| 12345678910111213141516171819202122232425262728293031 |
- # Outputs for minimal GCP Cloud Run deployment
- output "service_url" {
- description = "URL of the Cloud Run service"
- value = google_cloud_run_v2_service.llama_service.uri
- }
- output "service_name" {
- description = "Name of the Cloud Run service"
- value = google_cloud_run_v2_service.llama_service.name
- }
- output "service_account_email" {
- description = "Email of the Cloud Run service account"
- value = google_service_account.cloud_run_sa.email
- }
- output "repository_url" {
- description = "URL of the Artifact Registry repository"
- value = "${var.region}-docker.pkg.dev/${var.project_id}/${google_artifact_registry_repository.llama_repository.repository_id}"
- }
- output "project_id" {
- description = "GCP project ID"
- value = var.project_id
- }
- output "region" {
- description = "GCP region"
- value = var.region
- }
|