Skip to content

Instantly share code, notes, and snippets.

@giladno
Created March 30, 2020 20:47
Show Gist options
  • Save giladno/f6766be3d8ba0f71cc832d73ea658924 to your computer and use it in GitHub Desktop.
Save giladno/f6766be3d8ba0f71cc832d73ea658924 to your computer and use it in GitHub Desktop.
S3 static hosting policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::bucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment