Skip to content

Commit

Permalink
modules/aws/vpc/sg-elb: Fix name for TNC security group
Browse files Browse the repository at this point in the history
In 251147e (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.
  • Loading branch information
wking committed Aug 21, 2018
1 parent 8e751d7 commit e26e251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aws/vpc/sg-elb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)}"
Expand Down

0 comments on commit e26e251

Please sign in to comment.