Files
foxhunt/infra/modules/dns/outputs.tf
jgrusewski a0bd744e5b fix(infra): remove stale DNS outputs, add chat/mail FQDNs
Remove prometheus_fqdn and monitor_fqdn outputs that referenced
deleted DNS records. Add chat_fqdn and mail_fqdn for Mattermost
and Stalwart services.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 14:47:04 +01:00

25 lines
836 B
HCL

output "git_fqdn" {
description = "FQDN for the GitLab instance"
value = "${scaleway_domain_record.git.name}.${scaleway_domain_record.git.dns_zone}"
}
output "grafana_fqdn" {
description = "FQDN for the Grafana instance"
value = "${scaleway_domain_record.grafana.name}.${scaleway_domain_record.grafana.dns_zone}"
}
output "api_fqdn" {
description = "FQDN for the API Gateway (gRPC)"
value = "${scaleway_domain_record.api.name}.${scaleway_domain_record.api.dns_zone}"
}
output "chat_fqdn" {
description = "FQDN for the Mattermost chat"
value = "${scaleway_domain_record.chat.name}.${scaleway_domain_record.chat.dns_zone}"
}
output "mail_fqdn" {
description = "FQDN for the Stalwart mail server"
value = "${scaleway_domain_record.mail.name}.${scaleway_domain_record.mail.dns_zone}"
}