Skip to content

Instantly share code, notes, and snippets.

@ianshea
Created January 14, 2016 23:38
Show Gist options
  • Save ianshea/4be8798dc4368de90218 to your computer and use it in GitHub Desktop.
Save ianshea/4be8798dc4368de90218 to your computer and use it in GitHub Desktop.
Amazon S3 Bucket Public Access
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::examplebucket/*"]
}
]
}
@ianshea
Copy link
Author

ianshea commented Jan 14, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment