Files
terraform/aws/aws_simple/ec2/variables.tf
gregory hendrickson 64cf0d8937 mv AWS -> aws/aws_simple
2023-11-16 13:10:07 -08:00

14 lines
307 B
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
}