Skip to content

Instantly share code, notes, and snippets.

@taufiqpsumarna
Last active November 24, 2023 02:37
Show Gist options
  • Save taufiqpsumarna/6ef818bdbceadadce85a88392602e1a5 to your computer and use it in GitHub Desktop.
Save taufiqpsumarna/6ef818bdbceadadce85a88392602e1a5 to your computer and use it in GitHub Desktop.
AWS IAM Policies for provisioning EKS Cluster using terraform
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ec2:*",
"eks:*",
"elasticloadbalancing:*",
"autoscaling:*",
"cloudwatch:*",
"logs:*",
"kms:DescribeKey",
"iam:*",
"kms:*"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment