From 723805470e61e23b875e660be9da8336ce424358 Mon Sep 17 00:00:00 2001 From: Bradley Lunsford <109703335+jpl-btlunsfo@users.noreply.github.com> Date: Mon, 11 Nov 2024 21:26:49 -0800 Subject: [PATCH] Update networking.tf removing extra tag-Name k/v pair --- terraform-unity/networking.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/terraform-unity/networking.tf b/terraform-unity/networking.tf index b1d1113..86743c4 100644 --- a/terraform-unity/networking.tf +++ b/terraform-unity/networking.tf @@ -85,7 +85,6 @@ resource "aws_ssm_parameter" "management_console_url" { # Find the MC's ALB's security group (created before unity-proxy) data "aws_security_group" "mc_alb_sg" { tags = { - Name = "Unity Management Console Load Balancer SG" Name = "Unity ${var.project}-${var.venue} Management Console LB SG" Venue = var.venue ServiceArea = "cs" @@ -137,4 +136,4 @@ resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { from_port = 0 ip_protocol = "tcp" cidr_ipv4 = "0.0.0.0/0" -} \ No newline at end of file +}