Files
proxy/terraform/outputs.tf
2025-10-12 17:32:07 -04:00

11 lines
279 B
HCL

output "proxy_ip" {
description = "The public address of the proxy server."
value = hcloud_server.server_instance.ipv4_address
sensitive = false
}
output "network_cidr" {
description = "The CIDR of the private network."
value = local.network_cidr
sensitive = false
}