Skip to content

Instantly share code, notes, and snippets.

@isummation
Last active December 22, 2017 05:11
Show Gist options
  • Save isummation/f64dafe5a0cc13c0be6ad5d14908bf16 to your computer and use it in GitHub Desktop.
Save isummation/f64dafe5a0cc13c0be6ad5d14908bf16 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::bucket1"
]
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::bucket1/user2folder/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment