Skip to content

Instantly share code, notes, and snippets.

@dsmrt
Created August 16, 2019 18:52
Show Gist options
  • Save dsmrt/c77703ad701f3a0d501016b38d91f999 to your computer and use it in GitHub Desktop.
Save dsmrt/c77703ad701f3a0d501016b38d91f999 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListAllMyBuckets",
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "*"
},
{
"Sid": "FullBucketAccess",
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my-bucket-name",
"arn:aws:s3:::my-bucket-name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment