17 lines
436 B
Terraform
17 lines
436 B
Terraform
output "project_id" {
|
|
description = "The GCP project ID scaffolded into."
|
|
value = var.project_id
|
|
}
|
|
|
|
output "agent_sa_email" {
|
|
description = "Email of the Gemini Agent runtime service account."
|
|
value = google_service_account.agent_sa.email
|
|
}
|
|
|
|
output "code_assist_sa_email" {
|
|
description = "Email of the Gemini Code Assist Enterprise service account."
|
|
value = google_service_account.code_assist_sa.email
|
|
}
|
|
|
|
|