mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 06:45:01 +00:00
49 lines
1.0 KiB
HCL
49 lines
1.0 KiB
HCL
|
|
# Define variables
|
|
variable "min_size" {
|
|
type = number
|
|
description = "Minimum number of instances in the Auto Scaling Group"
|
|
default = 1
|
|
}
|
|
|
|
variable "max_size" {
|
|
type = number
|
|
description = "Maximum number of instances in the Auto Scaling Group"
|
|
default = 1
|
|
}
|
|
|
|
|
|
variable "us_east_subnet_1_id" {
|
|
description = "The ID of the first US East subnet"
|
|
type = string
|
|
}
|
|
|
|
variable "us_east_subnet_2_id" {
|
|
description = "The ID of the second US East subnet"
|
|
type = string
|
|
}
|
|
|
|
variable "us_east_subnet_3_id" {
|
|
description = "The ID of the third US East subnet"
|
|
type = string
|
|
}
|
|
|
|
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 "vpc_id" {
|
|
description = "The ID of the VPC"
|
|
type = string
|
|
} |