Skip to content

Instantly share code, notes, and snippets.

@mazhar266
Created November 20, 2019 04:47
Show Gist options
  • Save mazhar266/ed46788a713606c9a6b001e49d198e4e to your computer and use it in GitHub Desktop.
Save mazhar266/ed46788a713606c9a6b001e49d198e4e to your computer and use it in GitHub Desktop.
Making a AWS S3 Bucket Public
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"PublicRead",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::bucket-name/*"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment