Files
2026-09-01 20:00:05 +00:00

29 lines
646 B
HCL

variable "project_id" {
description = "Google Cloud project hosting the baseline."
type = string
}
variable "region" {
description = "Primary deployment region."
type = string
default = "us-central1"
}
variable "name" {
description = "Lowercase application name."
type = string
default = "reference-app"
}
variable "container_image" {
description = "Fully qualified, prebuilt container image."
type = string
default = "us-docker.pkg.dev/cloudrun/container/hello"
}
variable "labels" {
description = "Additional resource labels."
type = map(string)
default = {}
}