diff options
| author | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-04-26 21:02:47 +0800 |
| commit | d3e770254de0bb301815ca87257c8b1a357d06c4 (patch) | |
| tree | 358c814be2a06b9e2009905f14938243286b8d82 /terraform/modules/llm/outputs.tf | |
Diffstat (limited to 'terraform/modules/llm/outputs.tf')
| -rw-r--r-- | terraform/modules/llm/outputs.tf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/terraform/modules/llm/outputs.tf b/terraform/modules/llm/outputs.tf new file mode 100644 index 0000000..a953e73 --- /dev/null +++ b/terraform/modules/llm/outputs.tf | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | output "service_dns" { | ||
| 2 | value = "${var.release_name}-llm-app.${var.namespace}.svc.cluster.local" | ||
| 3 | description = "In-cluster DNS name for the LLM Service." | ||
| 4 | } | ||
| 5 | |||
| 6 | output "ingress_host" { | ||
| 7 | value = var.ingress_host | ||
| 8 | } | ||
| 9 | |||
| 10 | output "namespace" { | ||
| 11 | value = kubernetes_namespace_v1.this.metadata[0].name | ||
| 12 | } | ||
