Skip to content

Instantly share code, notes, and snippets.

@kjohnston
Last active December 31, 2015 19:09
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 kjohnston/8031406 to your computer and use it in GitHub Desktop.
Save kjohnston/8031406 to your computer and use it in GitHub Desktop.
S3 Bucket Policy to make all contents publicly readable.
{
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::socialimprints-development-assets/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment