11 lines
279 B
HCL
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
|
|
} |