12 lines
292 B
HCL
12 lines
292 B
HCL
output "server_ip" {
|
|
description = "The public address of the server."
|
|
value = hcloud_server.server_instance.ipv4_address
|
|
sensitive = false
|
|
}
|
|
|
|
output "server_fqdn" {
|
|
description = "The public domain of the server."
|
|
value = "${local.subdomain}.${local.domain}"
|
|
sensitive = false
|
|
}
|