Skip to content

Instantly share code, notes, and snippets.

@thecfguy
Created July 2, 2019 06:55
Show Gist options
  • Save thecfguy/b346f704afba21ab9d8c935210092e60 to your computer and use it in GitHub Desktop.
Save thecfguy/b346f704afba21ab9d8c935210092e60 to your computer and use it in GitHub Desktop.
AWS bucket permission to give public read access
{
"Version": "2012-10-17",
"Id": "PublicBucketPolicy",
"Statement": [
{
"Sid": "Stmt1482880670019",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::BUCKETNAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment