-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
executable file
·51 lines (42 loc) · 1.12 KB
/
variables.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
40
41
42
43
44
45
46
47
48
49
50
51
variable "cluster_name" {
description = "The name of the EKS cluster"
}
variable "vpc_id" {
description = "The VPC id of the EKS cluster"
default = ""
}
variable "region" {
description = "The region of the EKS cluster"
default = "ca-central-1"
}
variable "create_alb_ingress_controller" {
description = "Whether to create ALB ingress controller"
type = bool
default = true
}
variable "create_external_dns" {
description = "Whether to create External DNS"
type = bool
default = true
}
variable "create_metrics_server" {
description = "Whether to create Metrics server"
type = bool
default = true
}
variable "alb_ingress_controller_version" {
description = "The verion of the ALB ingress controller"
default = "1.1.7"
}
variable "external_dns_version" {
description = "The version of the External DNS"
default = "0.8.0"
}
variable "metrics_server_version" {
description = "The version of the Metrics server"
default = "0.4.4"
}
variable "cluster_namespaces" {
description = "The k8s namespaces to create on the cluster"
default = []
}