forked from DNXLabs/terraform-aws-eks-argocd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_variables.tf
50 lines (44 loc) · 1.2 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
variable "enabled" {
type = bool
default = true
description = "Variable indicating whether deployment is enabled."
}
variable "helm_services" {
default = [
{
name = "argo-cd"
release_name = "argo-cd"
chart_version = "3.26.12"
settings = {}
},
{
name = "argo-rollouts"
release_name = "argo-rollouts"
chart_version = "2.5.0"
settings = {}
}
]
}
variable "helm_chart_repo" {
type = string
default = "https://argoproj.github.io/argo-helm"
description = "Argo CD repository name."
}
variable "create_namespace" {
type = bool
default = true
description = "Whether to create Kubernetes namespace with name defined by `namespace`."
}
variable "namespace" {
type = string
default = "argocd"
description = "Kubernetes namespace to deploy Argo CD Helm chart."
}
variable "mod_dependency" {
default = null
description = "Dependence variable binds all AWS resources allocated by this module, dependent modules reference this variable."
}
variable "settings" {
default = {}
description = "Additional settings which will be passed to the Helm chart values."
}