Add nginx server block for api.fxhnt.ai with grpc_pass to the api-gateway ClusterIP service. Add Scaleway DNS A record via Terraform module. Fix fxt gRPC client to enable TLS when connecting to https:// endpoints (tonic requires explicit ClientTlsConfig). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
688 B
HCL
20 lines
688 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}"
|
|
}
|