Skip to content

Commit

Permalink
Merge pull request #25 from utilitywarehouse/etcd-3.3.2
Browse files Browse the repository at this point in the history
update security group rules
  • Loading branch information
george-angel committed Mar 20, 2018
2 parents 905f4e7 + 4b27f45 commit 29b7359
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions etcd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ resource "aws_security_group_rule" "ingress-master-to-etcd" {
security_group_id = "${aws_security_group.etcd.id}"
}

resource "aws_security_group_rule" "ingress-worker-to-etcd-metrics-proxy" {
resource "aws_security_group_rule" "ingress-worker-insecure-metrics" {
type = "ingress"
from_port = 2381
to_port = 2381
from_port = 9378
to_port = 9378
protocol = "tcp"
source_security_group_id = "${aws_security_group.worker.id}"
security_group_id = "${aws_security_group.etcd.id}"
Expand Down

0 comments on commit 29b7359

Please sign in to comment.