-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
29 lines (24 loc) · 942 Bytes
/
variables.tf
File metadata and controls
29 lines (24 loc) · 942 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
variable "namespace" {
type = string
description = "Namespace where the nginx ingress controller is going to be deployed"
}
variable "custom_values" {
type = bool
description = "Set to true if you do not want to use the default values.yaml provided, fill custom_values_content variable with your custom values"
default = false
}
variable "custom_values_content" {
type = string
description = "Namespace where the nginx ingress controller is going to be deployed"
default = ""
}
variable "default_cert" {
type = string
description = "Useful if you want to use a default certificate for your ingress controller. Format: namespace/secretName"
default = "ingress-controllers/default-certificate"
}
variable "is_production" {
type = bool
description = "If set to true: 2 ingress controller replicas are going to be deployed. Default: 1 replica"
default = false
}