From 9e86c8e6ddbf4d27e2c119dd6422259559f0ef46 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 8 Jul 2021 16:46:58 -0400 Subject: [PATCH] make tags required --- common/variables.common.subnets.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/variables.common.subnets.tf b/common/variables.common.subnets.tf index 4b45497..e3dca40 100644 --- a/common/variables.common.subnets.tf +++ b/common/variables.common.subnets.tf @@ -5,10 +5,10 @@ variable "public_subnets" { label = string bits = number private = bool + tags = map(string) # subnets = list(string) # labels = list(string) # availability_zones = list(string) - # tags = map(string) })) default = [] } @@ -20,10 +20,10 @@ variable "private_subnets" { label = string bits = number private = bool + tags = map(string) # subnets = list(string) # labels = list(string) # availability_zones = list(string) - # tags = map(string) })) default = [] }