OSVauco/infrastructure/modules/vauco-bootstrap/outputs.tf

15 lines
586 B
HCL

output "cloud_run_service_url" {
description = "The URL of the Cloud Run service."
value = google_cloud_run_v2_service.agent_service.uri
}
output "service_account_email" {
description = "The email of the service account."
value = google_service_account.agent_sa.email
}
output "artifact_registry_url" {
description = "The URL of the Artifact Registry repository."
value = "${google_artifact_registry_repository.repo.location}-docker.pkg.dev/${google_artifact_registry_repository.repo.project}/${google_artifact_registry_repository.repo.repository_id}"
}