Last active
March 21, 2024 02:37
-
-
Save overnew/2925f8bf4d17285037f31fd71f274773 to your computer and use it in GitHub Desktop.
ec2 s3 role
This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"s3:CreateBucket", | |
"s3:PutBucketOwnershipControls", | |
"s3:PutObject", | |
"s3:PutBucketPublicAccessBlock", | |
"s3:ListBucket", | |
"s3:ListAllMyBuckets", | |
"s3:DeleteBucket" | |
], | |
"Resource": "*", #특정 버킷이 아니라 모든 S3 버킷에 대한 제어 | |
"Effect": "Allow" #위의 Action을 허용 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment