Skip to content

Instantly share code, notes, and snippets.

@victorjspinto
Created October 2, 2015 05:40
Show Gist options
  • Save victorjspinto/0b9d21c8f08272f69a0e to your computer and use it in GitHub Desktop.
Save victorjspinto/0b9d21c8f08272f69a0e to your computer and use it in GitHub Desktop.
Enable public access S3
{
"Version":"2012-10-17",
"Statement": [{
"Sid": "Allow Public Access to All Objects",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::example.com/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment