S3 object copy from cross account
Taegu Kang
1 min read
- outline
You can upload or download object from cross account S3 bucket.
- how-to
Source Account
- Have S3 full access
Destination Account
- S3 bucket policy
{ "Version": "2008-10-17", "Id": "PolicyForCloudFrontPrivateContent", "Statement": [ { "Sid": "AllowYamiAccess", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::<source-aws-account>:root" }, "Action": [ "s3:ListBucket", "s3:GetObject", "S3:PutObject" ], "Resource": [ "arn:aws:s3:::<destination-bucket>", "arn:aws:s3:::<destination-bucket>/*" ] } ] }
0
Subscribe to my newsletter
Read articles from Taegu Kang directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by