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}" } output "project_number" { value = data.google_project.current.number description = "GCP project number (useful for service account references)" } output "ssh_command" { value = "ssh ${var.ssh_user}@${google_compute_address.drb.address}" description = "SSH command to reach the server (should rarely be needed)" }