-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvariables.tf
85 lines (71 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
variable "namespace" {
default = "argocd"
description = "The namespace to deploy argocd into"
}
variable "repositories" {
description = "A list of repository defintions"
default = {}
type = map(object({
url = string
type = optional(string)
username = optional(string)
password = optional(string)
sshPrivateKey = optional(string)
}))
}
variable "chart_version" {
description = "version of charts"
default = "4.5.10"
}
variable "server_extra_args" {
description = "Extra arguments passed to argoCD server"
default = []
}
variable "server_insecure" {
description = "Whether to run the argocd-server with --insecure flag. Useful when disabling argocd-server tls default protocols to provide your certificates"
default = false
}
variable "ingress_tls_secret" {
description = "The TLS secret name for argocd ingress"
default = "argocd-tls"
}
variable "ingress_host" {
description = "The ingress host"
default = null
}
variable "ingress_annotations" {
description = "annotations to pass to the ingress"
default = {}
}
variable "manifests" {
description = "Raw manifests to be applied after argocd is deployed"
default = []
type = list(string)
}
variable "manifests_directory" {
description = "Path/URL to directory that contains manifest files to be applied after argocd is deployed"
default = ""
type = string
}
variable "image_tag" {
description = "Image tag to install"
default = null
type = string
}
variable "config" {
default = {}
description = "Additional config to be added to the Argocd configmap"
}
variable "rbac_config" {
default = {}
description = "Additional rbac config to be added to the Argocd rbac configmap"
}
variable "values" {
default = {}
description = "A terraform map of extra values to pass to the Argocd Helm"
}
variable "values_files" {
type = list(string)
default = []
description = "Path to values files be passed to the Argocd Helm Deployment"
}