Added AI generated scaffold.

This commit is contained in:
2026-06-10 01:12:36 +02:00
commit c7e75cabe6
7 changed files with 206 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}