-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
47 lines (41 loc) · 1.21 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 "release_name" {
type = string
description = "Helm release name"
default = "argocd"
}
variable "namespace" {
description = "Namespace to install ArgoCD chart into"
type = string
default = "argocd"
}
variable "argocd_chart_version" {
description = "Version of ArgoCD chart to install"
type = string
default = "5.27.1" # See https://artifacthub.io/packages/helm/argo/argo-cd for latest version(s)
}
# Helm chart deployment can sometimes take longer than the default 5 minutes
variable "timeout_seconds" {
type = number
description = "Helm chart deployment can sometimes take longer than the default 5 minutes. Set a custom timeout here."
default = 800 # 10 minutes
}
variable "admin_password" {
description = "Default Admin Password"
type = string
default = ""
}
variable "values_file" {
description = "The name of the ArgoCD helm chart values file to use"
type = string
default = "values.yaml"
}
variable "enable_dex" {
type = bool
description = "Enabled the dex server?"
default = true
}
variable "insecure" {
type = bool
description = "Disable TLS on the ArogCD API Server?"
default = false
}