summaryrefslogtreecommitdiff
path: root/terraform/modules/llm/outputs.tf
blob: a953e73bcf2596e02f865c3e187d4f39a238b2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
output "service_dns" {
  value       = "${var.release_name}-llm-app.${var.namespace}.svc.cluster.local"
  description = "In-cluster DNS name for the LLM Service."
}

output "ingress_host" {
  value = var.ingress_host
}

output "namespace" {
  value = kubernetes_namespace_v1.this.metadata[0].name
}