-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreconciler-s3-execute-iam-policy.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathreconciler-s3-execute-iam-policy.json
File metadata and controls
44 lines (44 loc) · 1.13 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": [
{
"Sid": "IdentifyCaller",
"Effect": "Allow",
"Action": "sts:GetCallerIdentity",
"Resource": "*"
},
{
"Sid": "InspectScopedReconcilerBuckets",
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:GetBucketObjectLockConfiguration",
"s3:GetBucketRequestPayment",
"s3:GetBucketVersioning",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListBucketVersions"
],
"Resource": "arn:aws:s3:::hulumi-drift-e2e-*"
},
{
"Sid": "CreateAndDeleteScopedReconcilerBuckets",
"Effect": "Allow",
"Action": ["s3:CreateBucket", "s3:DeleteBucket", "s3:PutBucketVersioning"],
"Resource": "arn:aws:s3:::hulumi-drift-e2e-*"
},
{
"Sid": "DrainScopedReconcilerObjects",
"Effect": "Allow",
"Action": [
"s3:AbortMultipartUpload",
"s3:DeleteObject",
"s3:DeleteObjectVersion",
"s3:GetObject",
"s3:GetObjectVersion",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::hulumi-drift-e2e-*/*"
}
]
}