SmartloopHQ / tf_aws_eks_cluster

Terraform plan to provision AWS EKS cluster

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tf_aws_eks_cluster

The terraform plan is to create eks cluster, node-groups and bootstrap cluster permssions and security groups

Inputs

Name Description Type Default Required
cluster_name The name of the eks cluster string null yes
map_users system.master users to access the cluster list(object) null yes
node_groups node-groups configuraiton map(object{})
 "node" = { 
ami_type = "AL2_x86_64"
desired_capacity = "1"
disk_size = "20"
instance_types = ["m5.xlarge"]
k8s_labels = { "workload" = "core" }
}
yes

Outputs

None

Requirements

Name Version
terraform >= 1.0.1
aws >= 4.20.1

About

Terraform plan to provision AWS EKS cluster

License:Apache License 2.0


Languages

Language:HCL 100.0%