Files
terraform/aws/aws_asg/modules/ec2/ec2-west/variables.tf
2023-11-17 17:08:59 -08:00

33 lines
694 B
HCL

# Define variables
variable "min_size" {
type = number
description = "Minimum number of instances in the Auto Scaling Group"
}
variable "max_size" {
type = number
description = "Maximum number of instances in the Auto Scaling Group"
}
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_west_2" {
description = "The ID of the VPC"
type = string
}