OSVauco/infrastructure/terraform/outputs.tf

16 lines
636 B
HCL

# Managed via Cloud Build CI/CD — not Terraform
# output "cloud_run_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}"
}