generated from DNXLabs/terraform-aws-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_variables.tf
50 lines (42 loc) · 1.21 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
variable "enabled" {
type = bool
default = true
}
variable "helm_chart_name" {
type = string
default = "keda"
description = "Keda chart name."
}
variable "helm_chart_release_name" {
type = string
default = "keda"
description = "keda release name."
}
variable "helm_chart_repo" {
type = string
default = "https://kedacore.github.io/charts"
description = "keda repository name."
}
variable "helm_chart_version" {
type = string
default = "2.4.0"
description = "keda chart version."
}
variable "create_namespace" {
type = bool
default = true
description = "Whether to create k8s namespace with name defined by `namespace`."
}
variable "namespace" {
type = string
default = "keda"
description = "Kubernetes namespace to deploy EKS Spot termination handler Helm chart."
}
variable "mod_dependency" {
default = null
description = "Dependence variable binds all AWS resources allocated by this module, dependent modules reference this variable."
}
variable "settings" {
default = {}
description = "Additional settings which will be passed to the Helm chart values, see https://keda.sh/docs/2.0/deploy/#helm."
}