Fix formatting inconsistencies in README, Terraform scripts, and example variables

This commit is contained in:
2026-08-11 14:37:30 +02:00
parent e56eb80dfe
commit 0ec23ca6c4
4 changed files with 33 additions and 33 deletions
+6 -6
View File
@@ -1,6 +1,6 @@
# ─────────────────────────────────────────────
# ---------------------------------------------
# 1. API Enablement
# ─────────────────────────────────────────────
# ---------------------------------------------
locals {
apis = toset([
@@ -24,9 +24,9 @@ resource "google_project_service" "apis" {
disable_dependent_services = false
}
# ─────────────────────────────────────────────
# ---------------------------------------------
# 2. Service Accounts
# ─────────────────────────────────────────────
# ---------------------------------------------
resource "google_service_account" "agent_sa" {
project = var.project_id
@@ -46,9 +46,9 @@ resource "google_service_account" "code_assist_sa" {
depends_on = [google_project_service.apis]
}
# ─────────────────────────────────────────────
# ---------------------------------------------
# 3. Project-level IAM Bindings (additive)
# ─────────────────────────────────────────────
# ---------------------------------------------
resource "google_project_iam_member" "agent_sa_aiplatform_user" {
project = var.project_id