20 lines
483 B
HCL
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
|
|
}
|