-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
53 lines (45 loc) · 1.16 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
variable "client_id" {
type = string
default = ""
description = "A client id for oauth"
}
variable "client_secret" {
type = string
default = ""
description = "A client secrets for oauth"
}
variable "cookie_secret" {
type = string
default = ""
description = "A random_string make gen command python -c 'import os,base64; print base64.b64encode(os.urandom(16))'"
}
variable "namespace" {
type = string
default = ""
description = "A name of the existing namespace"
}
variable "domains" {
type = list(string)
default = []
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 "conf" {
type = map(string)
description = "A custom configuration for deployment"
default = {}
}
variable "chart_version" {
type = string
description = "A Helm Chart version"
default = "3.1.0"
}
variable "ingress_annotations" {
type = map(string)
description = "A set of annotations for ArgoCD Ingress"
default = {}
}