mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
24 lines
589 B
HCL
24 lines
589 B
HCL
variable "project_id" {
|
|
description = "The ID of the Google Cloud project to deploy resources to."
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The region where the resources will be created."
|
|
default = "us-central1"
|
|
}
|
|
|
|
variable "vpc_name" {
|
|
description = "The name of the VPC network to be created."
|
|
default = "fancy-store-vpc"
|
|
}
|
|
|
|
variable "subnet_name" {
|
|
description = "The name of the subnet to be created."
|
|
default = "fancy-store-subnet"
|
|
}
|
|
|
|
variable "subnet_cidr_range" {
|
|
description = "The CIDR range of the subnet to be created."
|
|
default = "10.0.0.0/24"
|
|
}
|