Skip to content

Instantly share code, notes, and snippets.

@dmourati
Created December 17, 2013 21:26
Show Gist options
  • Save dmourati/8012885 to your computer and use it in GitHub Desktop.
Save dmourati/8012885 to your computer and use it in GitHub Desktop.
Elasticbeanstalk IAM policies
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387278083000",
"Effect": "Allow",
"Action": [
"elasticbeanstalk:*"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387278213000",
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387278333000",
"Effect": "Allow",
"Action": [
"ec2:*"
],
"Condition": {
"StringEquals": {
"ec2:Region": "us-east-1"
}
},
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387279354000",
"Effect": "Allow",
"Action": [
"iam:ListInstanceProfiles"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387279943000",
"Effect": "Allow",
"Action": [
"cloudformation:*"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387280521000",
"Effect": "Allow",
"Action": [
"elasticloadbalancing:*"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387280999000",
"Effect": "Allow",
"Action": [
"autoscaling:*"
],
"Resource": [
"*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1387281526000",
"Effect": "Allow",
"Action": [
"cloudwatch:*"
],
"Resource": [
"*"
]
}
]
}
@fourseven
Copy link

Thanks for the suggestion @slowbluecamera, we've been running into that error and it's fixed it for us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment