diff --git a/terraform/aws/vpc.tf b/terraform/aws/vpc.tf index d6c8025..0e8fc5a 100644 --- a/terraform/aws/vpc.tf +++ b/terraform/aws/vpc.tf @@ -20,4 +20,18 @@ module "vpc" { Terraform = "true" Environment = "${local.environment}" } + + private_subnet_tags = { + Name = "private-${var.prefix}-${var.name}" + Terraform = "true" + Environment = "${local.environment}" + + } + + public_subnet_tags = { + Name = "public-${var.prefix}-${var.name}" + Terraform = "true" + Environment = "${local.environment}" + } + }