Last active
October 9, 2018 18:42
-
-
Save gavincampbell/c9f3e4b8e881bc7d364d4a6f00f3eaf7 to your computer and use it in GitHub Desktop.
AWS policy for Packer including S3 access
This file contains hidden or 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": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:AttachVolume", | |
"ec2:AuthorizeSecurityGroupIngress", | |
"ec2:DeregisterImage", | |
"ec2:DeleteSnapshot", | |
"ec2:DescribeInstances", | |
"ec2:CreateKeyPair", | |
"ec2:DescribeRegions", | |
"ec2:CreateImage", | |
"ec2:CopyImage", | |
"ec2:ModifyImageAttribute", | |
"ec2:DescribeSnapshots", | |
"ec2:DeleteVolume", | |
"ec2:ModifySnapshotAttribute", | |
"ec2:CreateSecurityGroup", | |
"ec2:DescribeVolumes", | |
"ec2:CreateSnapshot", | |
"ec2:ModifyInstanceAttribute", | |
"ec2:DetachVolume", | |
"ec2:TerminateInstances", | |
"ec2:DescribeTags", | |
"ec2:CreateTags", | |
"ec2:RegisterImage", | |
"ec2:RunInstances", | |
"ec2:StopInstances", | |
"ec2:DescribeSecurityGroups", | |
"ec2:CreateVolume", | |
"ec2:DescribeImages", | |
"ec2:GetPasswordData", | |
"ec2:DescribeImageAttribute", | |
"ec2:DeleteSecurityGroup", | |
"ec2:DescribeSubnets", | |
"ec2:DeleteKeyPair" | |
], | |
"Resource": "*" | |
}, | |
{ | |
"Sid": "VisualEditor1", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:GetObject", | |
"iam:PassRole", | |
"s3:ListBucket" | |
], | |
"Resource": [ | |
"arn:aws:s3:::sql-server-install-media/*", | |
"arn:aws:s3:::sql-server-install-media", | |
"arn:aws:iam::<your_account_id>:role/packer-role" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment