From e26e251d3699b07b381983a8c249f956c2503f30 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 0126c585adb..d40f9bdf3b5 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)}"