Skip to content

Instantly share code, notes, and snippets.

@bfleming-ciena
Created February 2, 2015 18:21
Show Gist options
  • Save bfleming-ciena/4a6a2a00b2e685965236 to your computer and use it in GitHub Desktop.
Save bfleming-ciena/4a6a2a00b2e685965236 to your computer and use it in GitHub Desktop.
example s3-only policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "S3Only",
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::*/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment