From f86f33b4014e15364431303f6709121b305c2f0d Mon Sep 17 00:00:00 2001 From: Daren Jacobs Date: Mon, 28 Jul 2025 11:07:12 -0400 Subject: [PATCH] Disable cloudwatch namespace in STSaaS deployments. Setting the bool to false should disable cloudwatch export signed-off-by: Daren Jacobs --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 8111870..c3adda6 100644 --- a/variables.tf +++ b/variables.tf @@ -208,7 +208,7 @@ variable "eks_cert_manager" { variable "eks_aws_cloudwatch_metrics" { description = "Enables AWS Cloudwatch Metrics in the EKS cluster" type = bool - default = true + default = false } variable "eks_external_dns" {