Created
September 8, 2015 19:47
-
-
Save bfleming-ciena/b8be26b7da3b731ba32f to your computer and use it in GitHub Desktop.
iam ec2 tart policy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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