From 3809381deaf3fad2db2851c36a1f038de3f16a56 Mon Sep 17 00:00:00 2001 From: musa-asad Date: Tue, 30 Apr 2024 12:15:05 -0400 Subject: [PATCH] Added cluster name. --- .../terraform/helm-windows/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/main.tf b/integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/main.tf index 1d282df..ee43cf9 100644 --- a/integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/main.tf +++ b/integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/main.tf @@ -208,6 +208,10 @@ resource "helm_release" "this" { name = "region" value = "${var.region}" } + set { + name = "clusterName" + value = "${aws_eks_cluster.this.name}" + } } resource "null_resource" "deployment_wait" {