-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminio.policy.json
More file actions
44 lines (44 loc) · 1.03 KB
/
minio.policy.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::gitlab-runner/*",
"arn:aws:s3:::gitlab-uploads/*",
"arn:aws:s3:::gitlab-artifacts/*",
"arn:aws:s3:::gitlab-extdiffs/*",
"arn:aws:s3:::gitlab-lfs/*",
"arn:aws:s3:::gitlab-packages/*",
"arn:aws:s3:::gitlab-depproxy/*",
"arn:aws:s3:::gitlab-tfstate/*",
"arn:aws:s3:::gitlab-pages/*"
]
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation",
"s3:ListBucketMultipartUploads"
],
"Resource": "arn:aws:s3:::gitlab-registry"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject",
"s3:ListMultipartUploadParts",
"s3:AbortMultipartUpload"
],
"Resource": "arn:aws:s3:::gitlab-registry/*"
}
]
}