Skip to content

Instantly share code, notes, and snippets.

@alexellis
Last active October 4, 2020 16:42
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 alexellis/cfd5d20697f7cc593ea586b06f72544d to your computer and use it in GitHub Desktop.
Save alexellis/cfd5d20697f7cc593ea586b06f72544d to your computer and use it in GitHub Desktop.
IAM Role for AWS EC2 for inletsctl/inlets-operator
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ec2:AuthorizeSecurityGroupIngress",
"ec2:DescribeInstances",
"ec2:DescribeImages",
"ec2:TerminateInstances",
"ec2:CreateSecurityGroup",
"ec2:CreateTags",
"ec2:DeleteSecurityGroup",
"ec2:RunInstances",
"ec2:DescribeInstanceStatus"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment