-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (40 loc) · 737 Bytes
/
variables.tf
File metadata and controls
47 lines (40 loc) · 737 Bytes
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
42
43
44
45
46
47
variable "cluster_name" {
type = string
default = "demo-eks-cluster"
}
variable "cluster_version" {
type = number
default = 1.27
}
variable "region" {
type = string
default = "us-east-1"
}
variable "availability_zones" {
type = list
default = ["us-east-1a", "us-east-1b"]
}
variable "addons" {
type = list(object({
name = string
version = string
}))
default = [
{
name = "kube-proxy"
version = "v1.27.16-eksbuild.14"
},
{
name = "vpc-cni"
version = "v1.19.2-eksbuild.1"
},
{
name = "coredns"
version = "v1.10.1-eksbuild.17"
},
{
name = "aws-ebs-csi-driver"
version = "v1.38.1-eksbuild.1"
}
]
}