-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariable.tf
31 lines (28 loc) · 998 Bytes
/
variable.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
variable "argocd_config" {
type = any
default = {
hostname = ""
values_yaml = ""
redis_ha_enabled = false
autoscaling_enabled = false
slack_notification_token = ""
argocd_notifications_enabled = false
ingress_class_name = ""
}
description = "Specify the configuration settings for Argocd, including the hostname, redis_ha_enabled, autoscaling, notification settings, and custom YAML values."
}
variable "chart_version" {
type = string
default = "7.3.11"
description = "Version of the Argocd chart that will be used to deploy Argocd application."
}
variable "namespace" {
type = string
default = "argocd"
description = "Name of the Kubernetes namespace where the Argocd deployment will be deployed."
}
variable "ingress_class_name" {
type = string
default = "ingress-nginx"
description = "Enter ingress class name which is created in EKS cluster"
}