-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
59 lines (50 loc) · 1.27 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
55
56
57
58
59
variable "namespace" {
type = string
default = ""
description = "A name of the existing namespace"
}
variable "elastic_chart_version" {
type = string
description = "A Helm Chart version"
default = "7.10.1"
}
variable "kibana_chart_version" {
type = string
description = "A Helm Chart version"
default = "7.10.1"
}
variable "filebeat_chart_version" {
type = string
description = "A Helm Chart version"
default = "7.10.1"
}
variable "domains" {
type = list(string)
default = ["local"]
description = "A list of domains to use for ingresses"
}
variable "argocd" {
type = map(string)
description = "A set of values for enabling deployment through ArgoCD"
default = {}
}
variable "filebeat_conf" {
type = any
description = "A custom configuration for deployment"
default = {}
}
variable "kibana_conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
variable "elastic_conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
variable "ingress_annotations" {
type = map(string)
description = "A set of annotations for ArgoCD Ingress"
default = {}
}