Corrected load balancing scheme in backend service

Corrected load balancing scheme in backend service
This commit is contained in:
Miren Esnaola 2022-12-22 12:19:01 +01:00
parent ebc110409c
commit 18fa8b79b3
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ resource "google_compute_backend_service" "default" {
health_checks = length(each.value.health_checks) == 0 ? null : [
for k in each.value.health_checks : lookup(local.hc_ids, k, k)
]
load_balancing_scheme = "EXTERNAL"
load_balancing_scheme = var.use_classic_version ? "EXTERNAL" : "EXTERNAL_MANAGED"
port_name = (
each.value.port_name == null
? lower(each.value.protocol == null ? var.protocol : each.value.protocol)