Skip to content

Instantly share code, notes, and snippets.

@elblivion
Created February 13, 2016 22:50
Show Gist options
  • Save elblivion/2b4cffc483285253197b to your computer and use it in GitHub Desktop.
Save elblivion/2b4cffc483285253197b to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::<our-log-bucket>/cheflogs*"
],
"Effect": "Allow"
},
{
"Action": [
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::<our-bootstrap-files-bucket>*"
],
"Effect": "Allow"
},
{
"Effect": "Allow",
"Action": [ "ec2:DescribeInstances" ],
"Resource": [ "*" ]
},
{
"Action": "sns:Publish",
"Resource": "arn:aws:sns:*",
"Effect": "Allow"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment