728x90
728x90
출처 : https://aws.amazon.com/ko/premiumsupport/knowledge-center/copy-s3-objects-account/
1. 정보
source bucket : honglab-source-bucket
destination bucket : honglab-destination-bucket
source 버킷엔 대충 아무 이미지를 5개 넣어두었고, destination 버킷엔 아무것도 없다
2. destination bucket 버킷 정책
Destination 버킷의 권한 > 버킷 정책 > 편집
아래의 정책을 넣어주자
{
"Version": "2012-10-17",
"Id": "Policy1611277539797",
"Statement": [
{
"Sid": "Stmt1611277535086",
"Effect": "Allow",
"Principal": {
"AWS": "<src 계정의 IAM User ARN>"
},
"Action": "s3:PutObject",
"Resource": "arn:aws:s3:::<Destination 버킷>/*",
"Condition": {
"StringEquals": {
"s3:x-amz-acl": "bucket-owner-full-control"
}
}
},
{
"Sid": "Stmt1611277877767",
"Effect": "Allow",
"Principal": {
"AWS": "<src 계정의 IAM User ARN>"
},
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::<Destination 버킷>"
}
]
}
3. Sync 명령
aws configure
-> src 계정의 IAM User로 자격 증명 후 진행
aws s3 sync s3://<src Bucket> s3://<Destination Bucket> --acl bucket-owner-full-control
끝
728x90
728x90
'공부 > AWS' 카테고리의 다른 글
[AWS Rekognition CLI] detect-custom-labels : Unknown options 에러 (Windows) (0) | 2021.08.29 |
---|---|
[AWS] Directory Service & WorkSpaces 생성하고 사용해보기 (0) | 2021.08.28 |
[AWS SageMaker] Ground Truth 사용해보기 (Private 작업자) (0) | 2021.07.31 |
[AWS] VPC - 관리형 접두사 목록(Managed Prefix list) (1) | 2021.07.27 |
[AWS] Linux EC2 기본 User Name 정리 (0) | 2021.07.20 |
댓글