Skip to content

Commit

Permalink
Merge pull request #155 from wking/fix-tnc-security-group-name
Browse files Browse the repository at this point in the history
modules/aws/vpc/sg-elb: Fix name for TNC security group
  • Loading branch information
openshift-merge-robot authored Aug 24, 2018
2 parents 6fb1b5f + 2fd9c92 commit ed37831
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 ed37831

Please sign in to comment.