Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 808 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 808 Bytes

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