Fix health check autocreation and id output in passthrough LB modules (#1928)

* fix health check autocreation and id output

* fix health check exclusion
This commit is contained in:
Ludovico Magnocavallo
2023-12-14 00:39:55 +01:00
committed by GitHub
parent ca3c86cb5c
commit 537237edd6
9 changed files with 19 additions and 13 deletions

View File

@@ -51,8 +51,8 @@ output "health_check" {
value = try(google_compute_region_health_check.default.0, null)
}
output "health_check_self_id" {
description = "Auto-created health-check self id."
output "health_check_id" {
description = "Auto-created health-check id."
value = try(google_compute_region_health_check.default.0.id, null)
}