-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (37 loc) · 1.04 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
# Kubernetes
variable "kubernetes_cluster_name" {
description = "Kubernetes cluster name"
type = string
}
variable "kubernetes_node_selector" {
description = "Node selector config to restrict where pod should be deployed"
type = map(string)
}
# External-DNS
variable "external_dns_namespace" {
description = "namespace where the external-dns will be deployed."
type = string
}
variable "external_dns_sa_annotations" {
description = "A map of string to add as annotations."
type = map(string)
default = {}
}
variable "external_dns_additional_args" {
description = "Additionals external DNS arguments."
type = list(string)
default = []
}
variable "dns_name" {
description = "The DNS name associated to your dns zone."
type = string
}
variable "external_dns_image" {
description = "Docker image to use"
type = string
}
variable "watch_istio" {
description = "Whether or not external dns will also watch istio resources."
type = bool
default = false
}