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>
This commit is contained in:
jgrusewski
2026-03-12 14:47:04 +01:00
parent 7a90bc87d9
commit a0bd744e5b

View File

@@ -8,17 +8,17 @@ output "grafana_fqdn" {
value = "${scaleway_domain_record.grafana.name}.${scaleway_domain_record.grafana.dns_zone}"
}
output "prometheus_fqdn" {
description = "FQDN for the Prometheus instance"
value = "${scaleway_domain_record.prometheus.name}.${scaleway_domain_record.prometheus.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 "monitor_fqdn" {
description = "FQDN for the Monitoring Service (gRPC)"
value = "${scaleway_domain_record.monitor.name}.${scaleway_domain_record.monitor.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}"
}