11 lines
307 B
HCL
11 lines
307 B
HCL
# outputs.tf
|
|
|
|
output "zones" {
|
|
description = "A map of all managed DNS zone objects, including those created and those referenced by ID."
|
|
value = local.all_zones
|
|
}
|
|
|
|
output "record_sets" {
|
|
description = "A map of all created DNS record set objects."
|
|
value = stackit_dns_record_set.this
|
|
}
|