Skip to content

Commit

Permalink
Merge pull request #1067 from apichick/glb-backend-service-load-balan…
Browse files Browse the repository at this point in the history
…cing-scheme

Corrected load balancing scheme in backend service
  • Loading branch information
apichick authored Dec 22, 2022
2 parents 082c63d + ed72351 commit 1edb3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/net-glb/backend-service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1edb3af

Please sign in to comment.