-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
41 lines (41 loc) · 1.06 KB
/
terraform.tfvars
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
40
41
cluster_name = "test-eks-cluster"
vpc_id = "vpc-xxxxx"
subnets = [
"subnet-xxx",
"subnet-xxx"
]
node_groups = [
{
name = "main-0"
instance_type = "m5.large"
asg_max_size = 5
asg_min_size = 1
root_volume_size = 20
subnet = "subnet-xxx"
kubelet_extra_args = "--image-gc-low-threshold=50 --image-gc-high-threshold=70"
},
{
name = "main-1"
instance_type = "m5.large"
asg_max_size = 5
asg_min_size = 1
root_volume_size = 20
subnet = "subnet-xxx"
kubelet_extra_args = "--image-gc-low-threshold=50 --image-gc-high-threshold=70"
},
]
app_roles = {
hello = {
permissions = [
{
actions = ["s3:*"]
resources = ["*"]
}
]
namespace = "default"
serviceaccount = "app"
}
}
tags = {
"environment" = "poc"
}