-
Notifications
You must be signed in to change notification settings - Fork 7
/
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 = "kube-system"
description = "A name of the existing namespace"
}
variable "namespace_name" {
type = string
default = "registry"
description = "A name of namespace for creating"
}
variable "module_depends_on" {
default = []
type = list(any)
description = "A list of explicit dependencies"
}
variable "cluster_name" {
type = string
default = null
description = "A name of the Amazon EKS cluster"
}
variable "chart_version" {
type = string
description = "A Helm Chart version"
default = "1.10.1"
}
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 "domains" {
type = list(string)
default = []
description = "A list of domains to use for ingresses"
}
variable "storage" {
type = string
default = "filesystem"
description = "Storage system to use. Can filesystem, s3"
}