Skip to content

Instantly share code, notes, and snippets.

@uriklar
Last active June 20, 2018 12:12
Show Gist options
  • Save uriklar/3f32314a239fe59eddfbd9b4efc8686d to your computer and use it in GitHub Desktop.
Save uriklar/3f32314a239fe59eddfbd9b4efc8686d to your computer and use it in GitHub Desktop.
S3 bucket policy
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "Allow Public Access to All Objects",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment