OSVauco/infrastructure/modules/vauco-bootstrap/outputs.tf
Chris Christiansen 9fcb9c354a
Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
feat(core): Fresh initialization - Deploy v3.6.1 Singularity Architecture
2026-09-03 04:03:09 +00:00

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}"
}