Skip to content

Instantly share code, notes, and snippets.

@trekdemo
Created January 16, 2012 10:49
Show Gist options
  • Save trekdemo/1620202 to your computer and use it in GitHub Desktop.
Save trekdemo/1620202 to your computer and use it in GitHub Desktop.
Amazon S3: Public read permission for anybody
{
"Version": "2008-10-17",
"Id": "",
"Statement": [
{
"Sid": "PublicReadGetObject",
"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