Skip to content

Instantly share code, notes, and snippets.

@sr9yar
sr9yar / iam-policy.json
Last active June 17, 2020 09:44 — forked from woganmay/iam-policy.json
IAM policy to grant a user narrow access to one S3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],