Skip to content

Instantly share code, notes, and snippets.

@mlafeldt
Created January 9, 2014 11:23
Show Gist options
  • Save mlafeldt/8332701 to your computer and use it in GitHub Desktop.
Save mlafeldt/8332701 to your computer and use it in GitHub Desktop.
Packer AWS policy actions
{
"Statement": [{
"Effect": "Allow",
"Action" : [
"ec2:AttachVolume",
"ec2:CreateVolume",
"ec2:DeleteVolume",
"ec2:DescribeVolumes",
"ec2:DetachVolume",
"ec2:CreateSnapshot",
"ec2:DeleteSnapshot",
"ec2:DescribeSnapshots",
"ec2:CreateImage",
"ec2:DescribeImages",
"ec2:RegisterImage",
"ec2:CreateTags",
"ec2:CreateKeyPair",
"ec2:DeleteKeyPair",
"ec2:DescribeInstances",
"ec2:RunInstances",
"ec2:StopInstances",
"ec2:TerminateInstances",
"ec2:CreateSecurityGroup",
"ec2:DeleteSecurityGroup",
"ec2:AuthorizeSecurityGroupEgress",
"ec2:AuthorizeSecurityGroupIngress"
],
"Resource" : "*"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment