Fixed psc connection id in net-address module output (#3763)

This commit is contained in:
apichick
2026-02-24 17:31:57 +01:00
committed by GitHub
parent 6708731d6d
commit 9d35f19ecb

View File

@@ -91,7 +91,7 @@ output "psc" {
forwarding_rule = {
id = try(google_compute_forwarding_rule.psc_consumer[k].id, null)
name = try(google_compute_forwarding_rule.psc_consumer[k].name, null)
psc_connection_id = try(google_compute_global_forwarding_rule.psc_consumer[k].psc_connection_id, null)
psc_connection_id = try(google_compute_forwarding_rule.psc_consumer[k].psc_connection_id, null)
}
}
}