Skip to content

Instantly share code, notes, and snippets.

View nbeaudoin's full-sized avatar

Nicholas Beaudoin nbeaudoin

View GitHub Profile
@AwsGeek
AwsGeek / bucket.json
Created December 23, 2018 20:17
Setting up a Static Website on S3
{
"Version":"2012-10-17",
"Statement":[{
"Sid":"PublicReadForGetBucketObjects",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::www.aws-today.com/*"]
}]
}