From 5e0d708221949825680fa21c06800943db50025f Mon Sep 17 00:00:00 2001 From: Anmol Nagpal Date: Thu, 30 Nov 2023 19:47:55 +0530 Subject: [PATCH] fix: remove whole tags from public and private subnets --- main.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.tf b/main.tf index cf47d07..e7b419a 100644 --- a/main.tf +++ b/main.tf @@ -68,7 +68,6 @@ resource "aws_subnet" "public" { lifecycle { # Ignore tags added by kubernetes ignore_changes = [ - tags, tags["kubernetes.io"], tags["SubnetType"], ] @@ -216,7 +215,6 @@ resource "aws_subnet" "private" { lifecycle { # Ignore tags added by kubernetes ignore_changes = [ - tags, tags["kubernetes.io"], tags["SubnetType"], ]