Skip to content

Instantly share code, notes, and snippets.

@nissicreative
Created August 20, 2018 12:50
Show Gist options
  • Save nissicreative/f280bb8bdd66413b920da6084f9f509b to your computer and use it in GitHub Desktop.
Save nissicreative/f280bb8bdd66413b920da6084f9f509b to your computer and use it in GitHub Desktop.
Grant access to single S3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::YOUR-BUCKET",
"arn:aws:s3:::YOUR-BUCKET/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment