Skip to content

Instantly share code, notes, and snippets.

@ShubhamRasal
Created October 18, 2020 15:58
Show Gist options
  • Save ShubhamRasal/c90786015f2799b99f09e07a808a12a2 to your computer and use it in GitHub Desktop.
Save ShubhamRasal/c90786015f2799b99f09e07a808a12a2 to your computer and use it in GitHub Desktop.
s3_bucket_policy
{
"Version": "2008-10-17",
"Id": "PolicyForPublicWebsiteContent",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::shubham-demo-bucket/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment