Skip to content

Commit 6a47f8a

Browse files
committed
fix: added ip_address_internal_managed_https output variable
1 parent b737455 commit 6a47f8a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

modules/frontend/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ output "ip_address_internal_managed_http" {
1919
value = [for rule in google_compute_global_forwarding_rule.internal_managed_http : rule.ip_address]
2020
}
2121

22+
output "ip_address_internal_managed_https" {
23+
description = "The internal/external IP addresses assigned to the HTTPS forwarding rules."
24+
value = [for rule in google_compute_global_forwarding_rule.internal_managed_https : rule.ip_address]
25+
}
26+
2227
output "external_ip" {
2328
description = "The external IPv4 assigned to the global fowarding rule."
2429
value = local.address

0 commit comments

Comments
 (0)