Skip to content

Commit

Permalink
Merge pull request #3600 from abhinavdahiya/pr-3450
Browse files Browse the repository at this point in the history
Bug 1828382: data/azure/vnet: switch to HTTPS probes for lbs
  • Loading branch information
openshift-merge-robot authored May 14, 2020
2 parents efa8da4 + 41622c1 commit b203d35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions data/data/azure/vnet/internal-lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ resource "azurerm_lb_probe" "internal_lb_probe_sint" {
number_of_probes = 2
loadbalancer_id = azurerm_lb.internal.id
port = 22623
protocol = "TCP"
protocol = "HTTPS"
request_path = "/healthz"
}

resource "azurerm_lb_probe" "internal_lb_probe_api_internal" {
Expand All @@ -135,5 +136,6 @@ resource "azurerm_lb_probe" "internal_lb_probe_api_internal" {
number_of_probes = 2
loadbalancer_id = azurerm_lb.internal.id
port = 6443
protocol = "TCP"
protocol = "HTTPS"
request_path = "/readyz"
}
3 changes: 2 additions & 1 deletion data/data/azure/vnet/public-lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,6 @@ resource "azurerm_lb_probe" "public_lb_probe_api_internal" {
number_of_probes = 2
loadbalancer_id = azurerm_lb.public.id
port = 6443
protocol = "TCP"
protocol = "HTTPS"
request_path = "/readyz"
}

0 comments on commit b203d35

Please sign in to comment.