mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 07:03:16 -06:00
8 lines
228 B
HCL
8 lines
228 B
HCL
output "pool_public_ip" {
|
|
value = "${google_compute_forwarding_rule.default.ip_address}"
|
|
}
|
|
|
|
output "instance_ips" {
|
|
value = "${join(" ", google_compute_instance.www.*.network_interface.0.access_config.0.assigned_nat_ip)}"
|
|
}
|