Skip to content

Instantly share code, notes, and snippets.

@madr
Created June 23, 2012 18:39
Show Gist options
  • Save madr/2979377 to your computer and use it in GitHub Desktop.
Save madr/2979377 to your computer and use it in GitHub Desktop.
S3 reading allowed 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