Skip to content

Commit

Permalink
Merge pull request #924 from wking/https-load-balancer-health-checks
Browse files Browse the repository at this point in the history
data/aws/vpc: Use HTTPS for load balancer health checks
  • Loading branch information
openshift-merge-robot authored Jan 10, 2019
2 parents 6880b3e + 069ba26 commit 86a4db1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions data/data/aws/vpc/master-elb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ resource "aws_lb_target_group" "api_internal" {
unhealthy_threshold = 3
interval = 10
port = 6443
protocol = "TCP"
protocol = "HTTPS"
path = "/healthz"
}
}

Expand All @@ -66,7 +67,8 @@ resource "aws_lb_target_group" "api_external" {
unhealthy_threshold = 3
interval = 10
port = 6443
protocol = "TCP"
protocol = "HTTPS"
path = "/healthz"
}
}

Expand All @@ -88,7 +90,8 @@ resource "aws_lb_target_group" "services" {
unhealthy_threshold = 3
interval = 10
port = 49500
protocol = "TCP"
protocol = "HTTPS"
path = "/healthz"
}
}

Expand Down

0 comments on commit 86a4db1

Please sign in to comment.