Skip to content

Instantly share code, notes, and snippets.

@kevinkarwaski
Last active December 15, 2015 23:29
Show Gist options
  • Select an option

  • Save kevinkarwaski/5340928 to your computer and use it in GitHub Desktop.

Select an option

Save kevinkarwaski/5340928 to your computer and use it in GitHub Desktop.
Limited S3 IAM policy for Cloudability
{
"Statement":[
{
"Action": "s3:ListAllMyBuckets",
"Effect": "Allow",
"Resource": "arn:aws:s3:::*"
},
{
"Action":["s3:ListBucket","s3:GetObject","s3:GetObjectVersion"],
"Effect":"Allow",
"Resource": [
"arn:aws:s3:::BUCKET_NAME",
"arn:aws:s3:::BUCKET_NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment