29 lines
646 B
HCL
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 = {}
|
|
}
|