Skip to content

Instantly share code, notes, and snippets.

@AlanSimpsonMe
Created August 4, 2017 20:14
Show Gist options
  • Save AlanSimpsonMe/d335e399094376f205c3faa59ec1fba1 to your computer and use it in GitHub Desktop.
Save AlanSimpsonMe/d335e399094376f205c3faa59ec1fba1 to your computer and use it in GitHub Desktop.
Amazon Web Services Bucket Policy for Static Website 0 replace XXXX with your info
{
"Version":"2012-10-17",
"Statement":[{
"Sid":"PublicReadForGetBucketObjects",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::XXXXXXXX/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment