From 998a33d108f0bad7bdabfa020d78019062a87cca Mon Sep 17 00:00:00 2001 From: Ish Shah Date: Tue, 25 Feb 2025 16:05:42 -0800 Subject: [PATCH 1/2] fix: ignore tag changes to customer-ns after instantiation --- modules/app_eks/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/app_eks/main.tf b/modules/app_eks/main.tf index 3313be1e..e4df8bb1 100644 --- a/modules/app_eks/main.tf +++ b/modules/app_eks/main.tf @@ -80,6 +80,10 @@ module "eks" { TerraformNamespace = var.namespace TerraformModule = "terraform-aws-wandb/module/app_eks" }) + + lifecycle { + ignore_changes = [tags] + } } resource "kubernetes_annotations" "gp2" { From 383690838a26acac29edcacd49beda4ee88d2178 Mon Sep 17 00:00:00 2001 From: Ish Shah Date: Tue, 25 Feb 2025 16:20:50 -0800 Subject: [PATCH 2/2] fix fmt --- modules/app_eks/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/app_eks/main.tf b/modules/app_eks/main.tf index e4df8bb1..88446ace 100644 --- a/modules/app_eks/main.tf +++ b/modules/app_eks/main.tf @@ -80,7 +80,7 @@ module "eks" { TerraformNamespace = var.namespace TerraformModule = "terraform-aws-wandb/module/app_eks" }) - + lifecycle { ignore_changes = [tags] }