Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 17, 2020 09:39
Show Gist options
  • Save velotiotech/e0d94858d2fe76ad6fac5e82e8617d4b to your computer and use it in GitHub Desktop.
Save velotiotech/e0d94858d2fe76ad6fac5e82e8617d4b to your computer and use it in GitHub Desktop.
bucket policy for publicly available
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::example-bucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment