Initial commit: Product OS platform
- Control Plane API with Gemini integration - Executors: Deploy, Analytics, Marketing - MCP Adapter for Continue integration - VSCode/VSCodium extension - Tool registry and run tracking - In-memory storage for local dev - Terraform infrastructure setup
This commit is contained in:
20
platform/infra/terraform/variables.tf
Normal file
20
platform/infra/terraform/variables.tf
Normal file
@@ -0,0 +1,20 @@
|
||||
variable "project_id" {
|
||||
type = string
|
||||
description = "GCP Project ID"
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = string
|
||||
default = "us-central1"
|
||||
description = "GCP region for resources"
|
||||
}
|
||||
|
||||
variable "artifact_bucket_name" {
|
||||
type = string
|
||||
description = "Name for the GCS bucket storing artifacts"
|
||||
}
|
||||
|
||||
variable "control_plane_image" {
|
||||
type = string
|
||||
description = "Container image URI for control-plane (Artifact Registry)."
|
||||
}
|
||||
Reference in New Issue
Block a user