Skip to content

Instantly share code, notes, and snippets.

@gistfrojd
Last active August 29, 2015 14:02
Show Gist options
  • Save gistfrojd/7f5548515d29a4d009fd to your computer and use it in GitHub Desktop.
Save gistfrojd/7f5548515d29a4d009fd to your computer and use it in GitHub Desktop.
AWS - S3 Policy File
{
"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