-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
114 lines (95 loc) · 2.41 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
variable "domain_name" {
type = string
description = "Domain name used"
}
variable "dns_zone_resource_group_name" {
type = string
description = "Resource group name in which DNS Zone is deployed"
}
variable "cluster_name" {
type = string
description = "Name of the AKS cluster"
}
variable "cluster_resource_group_name" {
type = string
description = "Name of the resorce group name AKS cluster is provisioned in"
}
variable "location" {
type = string
description = "Azure region"
}
variable "enable_nginx" {
type = bool
default = false
description = "Disable/enable Nginx Ingress"
}
variable "ingress_nginx_version" {
type = string
default = "4.9.0"
description = "Ingress nginx helm chart version"
}
variable "enable_external_dns" {
type = bool
default = false
description = "Disable/enable External DNS"
}
variable "external_dns_version" {
type = string
default = "6.31.0"
description = "External DNS helm chart version"
}
variable "enable_cert_manager" {
type = bool
default = false
description = "Disable/enable Cert Manager"
}
variable "cert_manager_version" {
type = string
default = "v1.13.3"
description = "Cert Manager helm chart version"
}
variable "email" {
type = string
default = ""
description = "Email to use for cert manager"
}
variable "enable_external_secrets" {
type = bool
default = false
description = "Disable/enable External Secrets"
}
variable "external_secrets_version" {
type = string
default = "v0.9.11"
description = "External Secrets helm chart version"
}
variable "enable_argocd" {
type = bool
default = false
description = "Disable/enable ArgoCD"
}
variable "argocd_chart_version" {
type = string
default = "5.53.10"
description = "ArgoCD helm chart version"
}
variable "argocd_image_tag" {
type = string
default = "v2.8.9"
description = "Argocd docker image version"
}
variable "argocd_password_bcrypted" {
type = string
description = "Bctypted password (hash) for argocd web ui"
default = ""
}
variable "enable_reloader" {
type = bool
default = false
description = "Disbale/enable Reloader"
}
variable "reloader_version" {
type = string
description = "Reloader helm chart version"
default = "1.0.63"
}