We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b737455 commit 6a47f8aCopy full SHA for 6a47f8a
modules/frontend/outputs.tf
@@ -19,6 +19,11 @@ output "ip_address_internal_managed_http" {
19
value = [for rule in google_compute_global_forwarding_rule.internal_managed_http : rule.ip_address]
20
}
21
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
+
27
output "external_ip" {
28
description = "The external IPv4 assigned to the global fowarding rule."
29
value = local.address
0 commit comments