Skip to content

Instantly share code, notes, and snippets.

@saranjsr
Created April 20, 2018 14:57
Show Gist options
  • Save saranjsr/ac8a9aba6a290fa46141f4776dfa103a to your computer and use it in GitHub Desktop.
Save saranjsr/ac8a9aba6a290fa46141f4776dfa103a to your computer and use it in GitHub Desktop.
give full access on only single bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::<bucket-name>",
"arn:aws:s3:::<bucket-name>/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment