Skip to content

Instantly share code, notes, and snippets.

@AWattNY
Created April 27, 2017 22:56
Show Gist options
  • Save AWattNY/2d87886850b0c92b4ff9f063331dcd41 to your computer and use it in GitHub Desktop.
Save AWattNY/2d87886850b0c92b4ff9f063331dcd41 to your computer and use it in GitHub Desktop.
Read-Only Permission to an Anonymous User Bucket Policy
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::examplebucket/*"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment