mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 14:55:06 +00:00
14 lines
307 B
HCL
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
|
|
}
|