diff options
| author | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
| commit | d3e770254de0bb301815ca87257c8b1a357d06c4 (patch) | |
| tree | 358c814be2a06b9e2009905f14938243286b8d82 /terraform/modules/observability/variables.tf | |
Diffstat (limited to 'terraform/modules/observability/variables.tf')
| -rw-r--r-- | terraform/modules/observability/variables.tf | 27 |
1 files changed, 27 insertions, 0 deletions
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 @@ | |||
| 1 | variable "namespace" { | ||
| 2 | type = string | ||
| 3 | default = "monitoring" | ||
| 4 | } | ||
| 5 | |||
| 6 | variable "kps_version" { | ||
| 7 | type = string | ||
| 8 | default = "65.5.1" | ||
| 9 | description = "kube-prometheus-stack chart version." | ||
| 10 | } | ||
| 11 | |||
| 12 | variable "ingress_nginx_version" { | ||
| 13 | type = string | ||
| 14 | default = "4.11.3" | ||
| 15 | description = "ingress-nginx chart version." | ||
| 16 | } | ||
| 17 | |||
| 18 | variable "grafana_admin_password" { | ||
| 19 | type = string | ||
| 20 | default = "admin" | ||
| 21 | sensitive = true | ||
| 22 | } | ||
| 23 | |||
| 24 | variable "prometheus_adapter_version" { | ||
| 25 | type = string | ||
| 26 | default = "4.11.0" | ||
| 27 | } | ||
