Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pandas
- socket io
- 파이썬
- react
- AWS
- Class
- docker
- Vue
- node
- lambda
- MongoDB
- S3
- flask
- 중급파이썬
- RDS
- 카톡
- merge
- TypeScript
- dict
- SSA
- EC2
- crud
- async
- SAA
- NeXT
- 튜플
- 채팅
- Props
- wetube
- git
Archives
- Today
- Total
목록크로스 계정 액세스 (1)
초보 개발자
AWS S3 크로스 계정 액세스 권한 제공
A라는 계정에 있는 S3에 B라는 계정이 접근할 수 있을까 ? 일반적으로는 불가능하다. 하지만 두 가지의 policy를 적용해주면 가능해진다. 1. A계정의 S3의 Policy { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::AccountB:user/AccountBUserName" }, "Action": [ "s3:GetObject", "s3:PutObject", "s3:PutObjectAcl" ], "Resource": [ "arn:aws:s3:::AccountABucketName/*" ] } ] } 2. B계정의 IAM의 Policy { "Version": "2012-10-..
AWS
2023. 5. 10. 12:40