This commit is contained in:
gregory hendrickson
2023-03-15 12:13:39 -07:00
parent 79a3e2d37a
commit 8ccee3087f

View File

@@ -1,7 +1,14 @@
variable "project_id" {}
variable "project_id" {
type = string
description = "The ID of the project to deploy resources into"
}
variable "region" {
default = "us-central1"
type = string
description = "The region to deploy resources into"
}
variable "zone" {
default = "us-central1-f"
variable "network_cidr" {
type = string
description = "The CIDR block for the VPC network"
}