mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 21:32:56 -07:00
19 lines
386 B
Terraform
19 lines
386 B
Terraform
# Copyright 2026 Google LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
variable "project_id" {
|
|
description = "The GCP project ID"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The GCP region to deploy to"
|
|
type = string
|
|
default = "us-west1"
|
|
}
|
|
|
|
variable "hub_image_uri" {
|
|
description = "The Docker image URI for the Workspace Hub"
|
|
type = string
|
|
}
|