Skip to content

Instantly share code, notes, and snippets.

@manafire
Created August 28, 2013 19:13
Show Gist options
  • Save manafire/6370017 to your computer and use it in GitHub Desktop.
Save manafire/6370017 to your computer and use it in GitHub Desktop.
Amazon Everyone Read-only public bucket policy
{
"Version":"2008-10-17",
"Statement":[{
"Sid":"AllowPublicRead",
"Effect":"Allow",
"Principal": {
"AWS": "*"
},
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::BUCKET_NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment