Files
terraform/aws/aws_simple/modules/vpc/subnets/us-west/variables.tf
Greg Hendrickson 48ed0ca1d6 seperate east/west
2023-11-17 09:46:38 -08:00

34 lines
543 B
HCL

variable "us_west_subnet_1_cidr_block" {
default = "10.0.1.0/24"
}
variable "us_west_subnet_2_cidr_block" {
default = "10.0.2.0/24"
}
variable "us_west_subnet_3_cidr_block" {
default = "10.0.3.0/24"
}
variable "us_west_subnet_1_az" {
default = "us-west-2a"
}
variable "us_west_subnet_2_az" {
default = "us-west-2b"
}
variable "us_west_subnet_3_az" {
default = "us-west-2c"
}
variable "region" {
default = "us-west-2"
}
variable "vpc_id_west_2" {
description = "The ID of the VPC"
type = string
}