Files
jmespath-playground/terraform/variables.tf

22 lines
488 B
HCL

variable "project_id" {
description = "Google project id"
type = string
}
variable "default_region" {
description = "Default Google Cloud region"
type = string
default = "europe-west1" # Belgium
}
variable "image_version" {
description = "Version of the Docker image"
type = string
}
variable "deletion_protection" {
type = bool
description = "Protect resources from deletion using terraform destroy and apply."
default = true
}