FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
outputs.tf 299 B
Newer Older
# outputs.tf defines outputs for the module.

output "service" {
  description = "Webapp Cloud Run service resource"
  value       = google_cloud_run_service.webapp
}

output "service_account" {
  description = "Service account which service runs as"
  value       = google_service_account.webapp
}