From ea1efb536ae40cefea3f5c222dcff03ffe41ddda Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 7 Nov 2017 23:24:28 -0800 Subject: [PATCH] Remove old firewall rule for bootstrap self-hosted etcd --- aws/container-linux/kubernetes/controllers.tf | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/aws/container-linux/kubernetes/controllers.tf b/aws/container-linux/kubernetes/controllers.tf index 10e4ead7..ef739a1b 100644 --- a/aws/container-linux/kubernetes/controllers.tf +++ b/aws/container-linux/kubernetes/controllers.tf @@ -129,16 +129,6 @@ resource "aws_security_group_rule" "controller-etcd" { self = true } -resource "aws_security_group_rule" "controller-bootstrap-etcd" { - security_group_id = "${aws_security_group.controller.id}" - - type = "ingress" - protocol = "tcp" - from_port = 12379 - to_port = 12380 - self = true -} - resource "aws_security_group_rule" "controller-flannel" { security_group_id = "${aws_security_group.controller.id}"