Skip to content

Instantly share code, notes, and snippets.

@semyont
Created June 20, 2017 12:43
Show Gist options
  • Save semyont/998c7b8dcc3c2fb8f9d9ca4406f8700a to your computer and use it in GitHub Desktop.
Save semyont/998c7b8dcc3c2fb8f9d9ca4406f8700a to your computer and use it in GitHub Desktop.
IAM Simple Bucket Policy For AWS
"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