Skip to content

Instantly share code, notes, and snippets.

@kusakusakusa
Created August 10, 2019 15:29
Show Gist options
  • Save kusakusakusa/27f2e54a521c1fa6706d8fa00a67ec53 to your computer and use it in GitHub Desktop.
Save kusakusakusa/27f2e54a521c1fa6706d8fa00a67ec53 to your computer and use it in GitHub Desktop.
Make all S3 objects in bucket public regardless of objects' acl
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::choices-game-hack/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment