Skip to content

Instantly share code, notes, and snippets.

@cppforlife
Created November 19, 2014 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cppforlife/03fcc812373c02a9740e to your computer and use it in GitHub Desktop.
Save cppforlife/03fcc812373c02a9740e to your computer and use it in GitHub Desktop.
s3 bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::<name>/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment