Skip to content

Instantly share code, notes, and snippets.

@asikkema
Created May 19, 2016 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asikkema/b6c612005609525fdbafcf2d33393a76 to your computer and use it in GitHub Desktop.
Save asikkema/b6c612005609525fdbafcf2d33393a76 to your computer and use it in GitHub Desktop.
aws s3 bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": [
"arn:aws:s3:::bucketname/*",
"arn:aws:s3:::bucketname"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment