19 lines
627 B
HCL
19 lines
627 B
HCL
output "cloud_run_url" {
|
|
value = google_cloud_run_service.sereact.status[0].url
|
|
description = "The URL of the deployed Cloud Run service"
|
|
}
|
|
|
|
output "storage_bucket_name" {
|
|
value = google_storage_bucket.app_bucket.name
|
|
description = "The name of the provisioned Cloud Storage bucket"
|
|
}
|
|
|
|
output "firestore_database_id" {
|
|
value = google_firestore_database.database.id
|
|
description = "The ID of the provisioned Firestore database"
|
|
}
|
|
|
|
output "container_registry_url" {
|
|
value = "gcr.io/${var.project_id}/sereact"
|
|
description = "The URL of the Container Registry repository"
|
|
} |