Skip to content

Instantly share code, notes, and snippets.

@overnew
Last active March 21, 2024 02:37
Show Gist options
  • Save overnew/2925f8bf4d17285037f31fd71f274773 to your computer and use it in GitHub Desktop.
Save overnew/2925f8bf4d17285037f31fd71f274773 to your computer and use it in GitHub Desktop.
ec2 s3 role
{
"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