Skip to content

Instantly share code, notes, and snippets.

@davidmwhynot
Created December 2, 2019 14:39
Show Gist options
  • Save davidmwhynot/b4fd93d989af5d6c0643ac7e6cdd9aab to your computer and use it in GitHub Desktop.
Save davidmwhynot/b4fd93d989af5d6c0643ac7e6cdd9aab to your computer and use it in GitHub Desktop.
s3 bucket policy for static images
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::BUCKET-NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment