Skip to content

Instantly share code, notes, and snippets.

@round
Last active August 29, 2015 14:07
Show Gist options
  • Save round/a7e8f83f53d12a352fbd to your computer and use it in GitHub Desktop.
Save round/a7e8f83f53d12a352fbd to your computer and use it in GitHub Desktop.
S3 Public Bucket Policy
{
"Version":"2008-10-17",
"Statement":[{
"Sid":"AllowPublicRead",
"Effect":"Allow",
"Principal": {
"AWS": "*"
},
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::bucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment