Last active
June 26, 2021 17:27
-
-
Save sandeepmanchi/677acf6722cd0eeeb437a40829dc8e39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
2 "Version": "2012-10-17", | |
3 "Id": "PolicyForDestinationBucket", | |
4 "Statement": [ | |
5 { | |
6 "Sid": "Permissions on objects and buckets", | |
7 "Effect": "Allow", | |
8 "Principal": { | |
9 "AWS": "arn:aws:iam::999999999999:role/cross-account-bucket-replication-role" | |
10 }, | |
11 "Action": [ | |
12 "s3:List*", | |
13 "s3:GetBucketVersioning", | |
14 "s3:PutBucketVersioning", | |
15 "s3:ReplicateDelete", | |
16 "s3:ReplicateObject" | |
17 ], | |
18 "Resource": [ | |
19 "arn:aws:s3:::original-bucket-may-replica-prod/*", | |
20 "arn:aws:s3:::original-bucket-may-replica-prod" | |
21 ] | |
22 }, | |
23 { | |
24 "Sid": "Permission to override bucket owner", | |
25 "Effect": "Allow", | |
26 "Principal": { | |
27 "AWS": "arn:aws:iam::999999999999:root" | |
28 }, | |
29 "Action": "s3:ObjectOwnerOverrideToBucketOwner", | |
30 "Resource": "arn:aws:s3:::original-bucket-may-replica-prod/*" | |
31 } | |
32 ] | |
33} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment