-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
47 lines (40 loc) · 1 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
variable "namespace" {
type = string
default = ""
description = "A name of the existing namespace"
}
variable "module_depends_on" {
default = []
type = list(any)
description = "A list of explicit dependencies"
}
variable "chart_version" {
type = string
description = "A Helm Chart version"
default = "4.3.0"
}
variable "aws_private" {
type = bool
description = "Set true or false to use private or public infrastructure"
default = false
}
variable "argocd" {
type = map(string)
description = "A set of values for enabling deployment through ArgoCD"
default = {}
}
variable "conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
variable "tags" {
type = map(string)
default = {}
description = "A tags for attaching to new created AWS resources"
}
variable "internal" {
type = bool
default = false
description = "Internal or external mode"
}