Skip to content

Instantly share code, notes, and snippets.

@techgaun
Created October 2, 2015 17:48
Show Gist options
  • Select an option

  • Save techgaun/741bd0269c3fd386750b to your computer and use it in GitHub Desktop.

Select an option

Save techgaun/741bd0269c3fd386750b to your computer and use it in GitHub Desktop.
Allow S3 console access to single or selected bucket(s)
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::techgaun-dummy-bucket",
"arn:aws:s3:::techgaun-dummy-bucket/*"
]
}
]
}
@techgaun

techgaun commented Oct 2, 2015

Copy link
Copy Markdown
Author

You can just use this access policy to enable access to selected one or more buckets in AWS S3 management console.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment