20 lines
662 B
Terraform
20 lines
662 B
Terraform
output "dynu_domain" {
|
|
description = "Primary Dynu domain represented by this Terraform root."
|
|
value = local.dynu_domain
|
|
}
|
|
|
|
output "dynu_dns_records_catalog" {
|
|
description = "Documentation catalog of expected Dynu DNS records discovered from repo service exposure."
|
|
value = local.dynu_dns_records_catalog
|
|
}
|
|
|
|
output "dynu_dns_inventory" {
|
|
description = "Documentation-friendly Dynu DNS inventory for export and merge into broader infrastructure docs."
|
|
value = {
|
|
provider = "dynu"
|
|
domain = local.dynu_domain
|
|
record_count = length(local.dynu_dns_records_catalog)
|
|
records = local.dynu_dns_records_catalog
|
|
}
|
|
}
|