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
+15
View File
@@ -0,0 +1,15 @@
variable "project_id" {
description = "The ID of the existing GCP project to scaffold into."
type = string
}
variable "prefix" {
description = "Short name prefix applied to all created resource names."
type = string
default = "gemini"
validation {
condition = can(regex("^[a-z][a-z0-9-]{0,14}$", var.prefix))
error_message = "prefix must be 1-15 lowercase letters, digits, or hyphens, starting with a letter."
}
}