Skip to content

Instantly share code, notes, and snippets.

@boushley
Last active December 21, 2015 15:08
Show Gist options
  • Save boushley/6324152 to your computer and use it in GitHub Desktop.
Save boushley/6324152 to your computer and use it in GitHub Desktop.
IAM Policy which allows for basic ElasticBeanstalk usage.
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"elasticbeanstalk:*",
"ec2:*",
"elasticloadbalancing:*",
"cloudformation:*",
"autoscaling:*",
"cloudwatch:*",
"s3:*",
"sns:*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment