mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 14:55:06 +00:00
33 lines
535 B
HCL
33 lines
535 B
HCL
variable "us_east_subnet_1_az" {
|
|
default = "us-east-1a"
|
|
}
|
|
|
|
variable "us_east_subnet_2_az" {
|
|
default = "us-east-1b"
|
|
}
|
|
|
|
variable "us_east_subnet_3_az" {
|
|
default = "us-east-1c"
|
|
}
|
|
|
|
variable "region" {
|
|
default = "us-east-1"
|
|
}
|
|
|
|
|
|
variable "us_east_subnet_1_cidr_block" {
|
|
default = "10.0.4.0/24"
|
|
}
|
|
|
|
variable "us_east_subnet_2_cidr_block" {
|
|
default = "10.0.5.0/24"
|
|
}
|
|
|
|
variable "us_east_subnet_3_cidr_block" {
|
|
default = "10.0.6.0/24"
|
|
}
|
|
|
|
variable "vpc_id" {
|
|
description = "The ID of the VPC"
|
|
type = string
|
|
} |