13 lines
277 B
HCL
13 lines
277 B
HCL
output "service_uri" {
|
|
value = google_cloud_run_v2_service.app.uri
|
|
description = "HTTPS endpoint of the Cloud Run service."
|
|
}
|
|
|
|
output "events_topic" {
|
|
value = google_pubsub_topic.events.id
|
|
}
|
|
|
|
output "objects_bucket" {
|
|
value = google_storage_bucket.objects.name
|
|
}
|