-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy patheks.tf
39 lines (34 loc) · 969 Bytes
/
eks.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module "eks"{
source = "terraform-aws-modules/eks/aws"
version = "17.1.0"
cluster_name = local.cluster_name
cluster_version = "1.20"
subnets = module.vpc.private_subnets
tags = {
Name = "Demo-EKS-Cluster"
}
vpc_id = module.vpc.vpc_id
workers_group_defaults = {
root_volume_type = "gp2"
}
workers_group = [
{
name = "Worker-Group-1"
instance_type = "t2.micro"
asg_desired_capacity = 2
additional_security_group_ids = [aws_security_group.worker_group_mgmt_one.id]
},
{
name = "Worker-Group-2"
instance_type = "t2.micro"
asg_desired_capacity = 1
additional_security_group_ids = [aws_security_group.worker_group_mgmt_two.id]
},
]
}
data "aws_eks_cluster" "cluster" {
name = module.eks.cluster_id
}
data "aws_eks_cluster_auth" "cluster" {
name = module.eks.cluster_id
}