Skip to content

Instantly share code, notes, and snippets.

@bfleming-ciena
Created September 8, 2015 19:47
Show Gist options
  • Save bfleming-ciena/b8be26b7da3b731ba32f to your computer and use it in GitHub Desktop.
Save bfleming-ciena/b8be26b7da3b731ba32f to your computer and use it in GitHub Desktop.
iam ec2 tart policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1441741040000",
"Effect": "Allow",
"Action": [
"ec2:StartInstances"
],
"Condition": {
"StringEquals": {
"ec2:Vpc": "vpc-ABCDEFG"
}
},
"Resource": [
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment