Files
server-26/infra/outputs.tf
T
2026-06-21 13:37:03 -04:00

13 lines
252 B
Terraform

output "server_ip" {
value = google_compute_address.drb.address
description = "Static external IP of the DRB server VM"
}
output "app_url" {
value = "https://app.${var.domain}"
}
output "api_url" {
value = "https://api.${var.domain}"
}