Skip to content

Instantly share code, notes, and snippets.

@NYARAS
Created November 18, 2021 22:11
Show Gist options
  • Save NYARAS/ac682bc5d4dc7d24c86ccfd427c56a0f to your computer and use it in GitHub Desktop.
Save NYARAS/ac682bc5d4dc7d24c86ccfd427c56a0f to your computer and use it in GitHub Desktop.
resource "aws_iam_role" "eks_cluster" {
# The name of the role
name = "eks-cluster"
# The policy that grants an entity permission to assume the role.
# Used to access AWS resources that you might not normally have access to.
# The role that Amazon EKS will use to create AWS resources for Kubernetes clusters
assume_role_policy = <<POLICY
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "eks.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
POLICY
}
resource "aws_iam_role_policy_attachment" "amazon_eks_cluster_policy" {
# The ARN of the policy you want to apply
policy_arn = "arn:aws:iam::aws:policy/AmazonEKSClusterPolicy"
# The role the policy should be applied to
role = aws_iam_role.eks_cluster.name
}
resource "aws_eks_cluster" "eks" {
# Name of the cluster.
name = "eks"
# The Amazon Resource Name (ARN) of the IAM role that provides permissions for
# the Kubernetes control plane to make calls to AWS API operations on your behalf
role_arn = aws_iam_role.eks_cluster.arn
# Desired Kubernetes master version
version = "1.19"
vpc_config {
# Indicates whether or not the Amazon EKS private API server endpoint is enabled
endpoint_private_access = false
# Indicates whether or not the Amazon EKS public API server endpoint is enabled
endpoint_public_access = true
# Must be in at least two different availability zones
subnet_ids = [
aws_subnet.public_1.id,
aws_subnet.public_2.id,
aws_subnet.private_1.id,
aws_subnet.private_2.id
]
}
# Ensure that IAM Role permissions are created before and deleted after EKS Cluster handling.
# Otherwise, EKS will not be able to properly delete EKS managed EC2 infrastructure such as Security Groups.
depends_on = [
aws_iam_role_policy_attachment.amazon_eks_cluster_policy
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment