Skip to content

Instantly share code, notes, and snippets.

@manudevcode
Created September 10, 2020 21:22
Show Gist options
  • Save manudevcode/255c479653bad98f048eb8976c839887 to your computer and use it in GitHub Desktop.
Save manudevcode/255c479653bad98f048eb8976c839887 to your computer and use it in GitHub Desktop.
S3 Public policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicReadAccess",
"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