Skip to content

Instantly share code, notes, and snippets.

@andrewp-as-is
Last active July 18, 2021 23:09
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 andrewp-as-is/4d0c55c2ad43d53d7520d08331823774 to your computer and use it in GitHub Desktop.
Save andrewp-as-is/4d0c55c2ad43d53d7520d08331823774 to your computer and use it in GitHub Desktop.
AWS S3 Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"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