From 8ccee3087f2c6e7b23a87cc81934726a2283f587 Mon Sep 17 00:00:00 2001 From: gregory hendrickson Date: Wed, 15 Mar 2023 12:13:39 -0700 Subject: [PATCH] . --- variables.tf | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index 9d86f38..f6934a0 100644 --- a/variables.tf +++ b/variables.tf @@ -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" }