generated from ministryofjustice/cloud-platform-terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
54 lines (43 loc) · 1.13 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
52
53
54
variable "eks_cluster_id" {
description = "trigger for null resource using eks_cluster_id"
}
variable "cluster_name" {
description = "Kubernetes cluster name - used to name (id) the auth0 resources"
}
variable "addon_create_vpc_cni" {
description = "Create vpc_cni addon"
type = bool
default = true
}
variable "addon_create_kube_proxy" {
description = "Create kube_proxy addon"
type = bool
default = true
}
variable "addon_create_coredns" {
description = "Create coredns addon"
type = bool
default = true
}
variable "addon_vpc_cni_version" {
description = "Version for addon_create_vpc_cni"
type = string
}
variable "addon_kube_proxy_version" {
description = "Version for addon_kube_proxy_version"
type = string
}
variable "addon_coredns_version" {
description = "Version for addon_coredns_version"
type = string
}
variable "cluster_oidc_issuer_url" {
description = "Used to create the IAM OIDC role"
type = string
default = ""
}
variable "addon_tags" {
default = {}
description = "Cluster addon tags"
type = map(string)
}