set static region/zone

This commit is contained in:
gregory hendrickson
2023-03-15 15:13:52 -07:00
parent 29d61f043f
commit 8a00bc31bf

View File

@@ -6,9 +6,12 @@ variable "project_id" {
variable "region" { variable "region" {
type = string type = string
description = "The region to deploy resources into" description = "The region to deploy resources into"
default = "us-central1"
} }
variable "zone" { variable "zone" {
type = string type = string
description = "The zone in which resource to be deployed" description = "The zone in which resource to be deployed"
default = "us-central1-f"
} }