pez-infra/terraform/hetzner/outputs.tf
Rasmus "Pez" Wejlgaard 06552c5b75
Some checks are pending
Deploy (on merge) / Discover hosts (push) Waiting to run
Deploy (on merge) / Deploy → (push) Blocked by required conditions
Terraform / Plan (push) Waiting to run
Terraform / Apply (push) Blocked by required conditions
fix: slight tweaks (#103)
* fix: slight tweaks

* remove vendor
2026-05-09 20:49:46 +01:00

12 lines
322 B
HCL

output "server_ips" {
description = "Public IPv4 addresses of all managed servers"
value = {
nuremberg_a = hcloud_server.nuremberg-a.ipv4_address
helsinki_a = hcloud_server.helsinki-a.ipv4_address
}
}
output "dns_zone" {
description = "The managed DNS zone name"
value = hcloud_zone.pezsh.name
}