Skip to content

Instantly share code, notes, and snippets.

@khyberspache
Created October 25, 2021 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khyberspache/6fb87bda21fe317f49850144b3bb007e to your computer and use it in GitHub Desktop.
Save khyberspache/6fb87bda21fe317f49850144b3bb007e to your computer and use it in GitHub Desktop.
Simple Prelude EC2 IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:AuthorizeSecurityGroupIngress",
"ec2:DescribeAddresses",
"ec2:DescribeImages",
"ec2:DescribeInstances",
"ec2:DescribeInstanceTypes",
"ec2:DescribeSecurityGroups",
"ec2:CreateSecurityGroup",
"ec2:CreateTags",
"ec2:RunInstances",
"ec2:TerminateInstances"
],
"Resource": "*"
}
]
}
@lzimm
Copy link

lzimm commented Oct 25, 2021

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