Skip to content

Commit

Permalink
fix health check exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoo committed Dec 13, 2023
1 parent dc53045 commit d80d2e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/net-lb-ext/health-check.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

locals {
hc = (
var.health_check == null ? null : var.health_check_config
var.health_check != null ? null : var.health_check_config
)
hc_grpc = try(local.hc.grpc, null) != null
hc_http = try(local.hc.http, null) != null
Expand Down
2 changes: 1 addition & 1 deletion modules/net-lb-int/health-check.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

locals {
hc = (
var.health_check == null ? null : var.health_check_config
var.health_check != null ? null : var.health_check_config
)
hc_grpc = try(local.hc.grpc, null) != null
hc_http = try(local.hc.http, null) != null
Expand Down
2 changes: 1 addition & 1 deletion modules/net-lb-proxy-int/health-check.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

locals {
hc = (
var.health_check == null ? null : var.health_check_config
var.health_check != null ? null : var.health_check_config
)
hc_grpc = try(local.hc.grpc, null) != null
hc_http = try(local.hc.http, null) != null
Expand Down

0 comments on commit d80d2e1

Please sign in to comment.