Skip to content

Instantly share code, notes, and snippets.

@joatmon08
Created May 2, 2019 19:55
Show Gist options
  • Save joatmon08/61301c8cfa11757b7bf8b861a45407b7 to your computer and use it in GitHub Desktop.
Save joatmon08/61301c8cfa11757b7bf8b861a45407b7 to your computer and use it in GitHub Desktop.
TDD-infra-bucket-01-policy
{
"Version": "2012-10-17",
"Id": "MyBucketPolicy",
"Statement": [
{
"Sid": "statement1",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::AccountID:user/test"
},
"Action": [
"s3:GetBucketLocation",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::examplebucket"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment