From 9d35f19ecb4516544492f1391ff22bce190d8800 Mon Sep 17 00:00:00 2001 From: apichick <19226769+apichick@users.noreply.github.com> Date: Tue, 24 Feb 2026 17:31:57 +0100 Subject: [PATCH] Fixed psc connection id in net-address module output (#3763) --- modules/net-address/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/net-address/outputs.tf b/modules/net-address/outputs.tf index abca88674..067378a6f 100644 --- a/modules/net-address/outputs.tf +++ b/modules/net-address/outputs.tf @@ -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) } } }