OSVauco/infrastructure/terraform/modules/vauco-bootstrap/outputs.tf
Chris Christiansen 9fcb9c354a
Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
feat(core): Fresh initialization - Deploy v3.6.1 Singularity Architecture
2026-09-03 04:03:09 +00:00

20 lines
483 B
HCL

output "project_id" {
description = "GCP project ID"
value = google_project.customer.project_id
}
output "project_number" {
description = "GCP project number"
value = google_project.customer.number
}
output "cloud_run_url" {
description = "Cloud Run service URL"
value = google_cloud_run_v2_service.app.uri
}
output "service_account_email" {
description = "Service account for Cloud Run"
value = google_service_account.cloud_run_sa.email
}