10 lines
409 B
Terraform
10 lines
409 B
Terraform
output "zone_ids" {
|
|
description = "Map of domain name to Hetzner zone ID."
|
|
value = { for name, z in hcloud_zone.this : name => z.id }
|
|
}
|
|
|
|
output "nameservers" {
|
|
description = "Map of domain name to the nameservers Hetzner assigned it - point your registrar's NS records at these to delegate DNS."
|
|
value = { for name, z in hcloud_zone.this : name => z.authoritative_nameservers.assigned }
|
|
}
|