mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 06:45:01 +00:00
23 lines
482 B
HCL
23 lines
482 B
HCL
variable "vpc_cidr_block" {
|
|
default = "10.0.0.0/16"
|
|
}
|
|
|
|
variable "us_west_subnet_1_id" {
|
|
description = "The ID of the first US West subnet"
|
|
type = string
|
|
}
|
|
|
|
variable "us_west_subnet_2_id" {
|
|
description = "The ID of the second US West subnet"
|
|
type = string
|
|
}
|
|
|
|
variable "us_west_subnet_3_id" {
|
|
description = "The ID of the third US West subnet"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The region to deploy to"
|
|
type = string
|
|
} |