Add DNS record, nginx gRPC proxy block, network policy for Tailscale ingress, and auto-detect fxhnt.ai in fxt monitor URL derivation. Show GPU telemetry even when no training sessions are active. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
872 B
HCL
25 lines
872 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 "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}"
|
|
}
|