From 2fd9c9266da1ad9ba25a26a4a97da4832d3f6ec1 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 21 Aug 2018 11:28:08 -0700 Subject: [PATCH] modules/aws/vpc/sg-elb: Fix name for TNC security group In 251147eb (TNC bootstrapping, 2018-02-13, coreos/tectonic-installer#3053), the resource was renamed from 'ncg' to 'tnc', but the name property wasn't updated to match. --- modules/aws/vpc/sg-elb.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aws/vpc/sg-elb.tf b/modules/aws/vpc/sg-elb.tf index aee96a9dcb5..476054bcd44 100644 --- a/modules/aws/vpc/sg-elb.tf +++ b/modules/aws/vpc/sg-elb.tf @@ -2,7 +2,7 @@ resource "aws_security_group" "tnc" { vpc_id = "${data.aws_vpc.cluster_vpc.id}" tags = "${merge(map( - "Name", "${var.cluster_name}_console_sg", + "Name", "${var.cluster_name}_tnc_sg", "kubernetes.io/cluster/${var.cluster_name}", "owned", "tectonicClusterID", "${var.cluster_id}" ), var.extra_tags)}"