Skip to content

Instantly share code, notes, and snippets.

@jasonroelofs
Created October 2, 2012 14:22
Show Gist options
  • Save jasonroelofs/3819511 to your computer and use it in GitHub Desktop.
Save jasonroelofs/3819511 to your computer and use it in GitHub Desktop.
Example permission statement for AWS IAM group.
{
"Statement": [
{
"Sid": "[unique statement ID]",
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::your-bucket-name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment