Skip to content

Instantly share code, notes, and snippets.

@mdagent
Last active October 16, 2015 18:29
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 mdagent/3af41f26cd77395d95b8 to your computer and use it in GitHub Desktop.
Save mdagent/3af41f26cd77395d95b8 to your computer and use it in GitHub Desktop.
Amazon S3 Bucket Policy - Allow Public Read
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YOUR-BUCKET-HERE/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment