Skip to content

Commit

Permalink
Merge branch 'master' into fix-test-compute-vm-kms
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoo authored Feb 28, 2023
2 parents 52eb837 + 6bf2fb4 commit 4b3b5ad
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions modules/compute-mig/health-check.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ resource "google_compute_health_check" "default" {
dynamic "https_health_check" {
for_each = local.hc_https ? [""] : []
content {
host = local.hc.http.host
port = local.hc.http.port
port_name = local.hc.http.port_name
port_specification = local.hc.http.port_specification
proxy_header = local.hc.http.proxy_header
request_path = local.hc.http.request_path
response = local.hc.http.response
host = local.hc.https.host
port = local.hc.https.port
port_name = local.hc.https.port_name
port_specification = local.hc.https.port_specification
proxy_header = local.hc.https.proxy_header
request_path = local.hc.https.request_path
response = local.hc.https.response
}
}

Expand Down
14 changes: 7 additions & 7 deletions modules/net-ilb/health-check.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ resource "google_compute_health_check" "default" {
dynamic "https_health_check" {
for_each = local.hc_https ? [""] : []
content {
host = local.hc.http.host
port = local.hc.http.port
port_name = local.hc.http.port_name
port_specification = local.hc.http.port_specification
proxy_header = local.hc.http.proxy_header
request_path = local.hc.http.request_path
response = local.hc.http.response
host = local.hc.https.host
port = local.hc.https.port
port_name = local.hc.https.port_name
port_specification = local.hc.https.port_specification
proxy_header = local.hc.https.proxy_header
request_path = local.hc.https.request_path
response = local.hc.https.response
}
}

Expand Down

0 comments on commit 4b3b5ad

Please sign in to comment.