Skip to content

Instantly share code, notes, and snippets.

@connor11528
Last active September 6, 2017 16:45
Show Gist options
  • Save connor11528/996ecc17f187feb05ac9780e70b6c2bd to your computer and use it in GitHub Desktop.
Save connor11528/996ecc17f187feb05ac9780e70b6c2bd to your computer and use it in GitHub Desktop.
Paste in this S3 bucket permission policy for our WildRydes AWS application. The website is hosted on the internet so we want it publicly accessible to everyone!
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment