Skip to content

Instantly share code, notes, and snippets.

@AlburIvan
Created March 21, 2019 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlburIvan/c20bf3197cc5ff642b4d17776f217622 to your computer and use it in GitHub Desktop.
Save AlburIvan/c20bf3197cc5ff642b4d17776f217622 to your computer and use it in GitHub Desktop.
AWS S3 - Public Bucket Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::<ARN OF YOUR BUCKET>/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment