Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created December 18, 2023 06:38
Show Gist options
  • Select an option

  • Save webgtx/c46eb1254d15d048f099c1b8d28ae157 to your computer and use it in GitHub Desktop.

Select an option

Save webgtx/c46eb1254d15d048f099c1b8d28ae157 to your computer and use it in GitHub Desktop.
AWS S3 Static Website bucket 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