From d3e770254de0bb301815ca87257c8b1a357d06c4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 26 Apr 2026 21:02:47 +0800 Subject: hehe --- terraform/modules/observability/variables.tf | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 terraform/modules/observability/variables.tf (limited to 'terraform/modules/observability/variables.tf') diff --git a/terraform/modules/observability/variables.tf b/terraform/modules/observability/variables.tf new file mode 100644 index 0000000..6aeaca3 --- /dev/null +++ b/terraform/modules/observability/variables.tf @@ -0,0 +1,27 @@ +variable "namespace" { + type = string + default = "monitoring" +} + +variable "kps_version" { + type = string + default = "65.5.1" + description = "kube-prometheus-stack chart version." +} + +variable "ingress_nginx_version" { + type = string + default = "4.11.3" + description = "ingress-nginx chart version." +} + +variable "grafana_admin_password" { + type = string + default = "admin" + sensitive = true +} + +variable "prometheus_adapter_version" { + type = string + default = "4.11.0" +} -- cgit