Skip to content

Commit

Permalink
data/aws/vpc/sg-master: Fix 9990 -> 9999 metrics to_port
Browse files Browse the repository at this point in the history
These were added in 3248996 (security: Open ports 9000-9999 inside
the cluster for host network services, 2018-11-15, openshift#683) with a commit
message that claimed the range should be through 9999.  Catch the code
up with that message.
  • Loading branch information
wking committed Feb 6, 2019
1 parent f34b097 commit 459bbe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/data/aws/vpc/sg-master.tf
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ resource "aws_security_group_rule" "master_ingress_internal" {

protocol = "tcp"
from_port = 9000
to_port = 9990
to_port = 9999
self = true
}

Expand All @@ -133,7 +133,7 @@ resource "aws_security_group_rule" "master_ingress_internal_from_worker" {

protocol = "tcp"
from_port = 9000
to_port = 9990
to_port = 9999
}

resource "aws_security_group_rule" "master_ingress_kube_scheduler" {
Expand Down

0 comments on commit 459bbe2

Please sign in to comment.