-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (41 loc) · 1.03 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
variable "argocd" {
type = map(string)
description = "A set of values for enabling deployment through ArgoCD"
}
variable "conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
# For depends_on queqe
variable "module_depends_on" {
default = []
type = list(any)
description = "A list of explicit dependencies"
}
variable "cluster_name" {
type = string
default = "swiss-army-kube"
description = "A name of the Amazon EKS cluster"
}
variable "grafana_loki_password" {
type = string
description = "Password for grafana admin"
default = ""
}
variable "domains" {
type = list(string)
default = ["local"]
description = "A list of domains to use for ingresses"
}
variable "namespace" {
type = string
default = ""
description = "A name of the existing namespace"
}
#pumped chart version
variable "chart_version" {
type = string
description = "A Helm Chart version"
default = "2.3.1"
}