You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/examples/alicloud-ess-scaling/variables.tf

24 lines
350 B

variable "security_group_name" {
default = "tf-sg"
}
variable "scaling_min_size" {
default = 1
}
variable "scaling_max_size" {
default = 1
}
variable "enable" {
default = true
}
variable "removal_policies" {
type = "list"
default = ["OldestInstance", "NewestInstance"]
}
variable "ecs_instance_type" {
default = "ecs.s2.large"
}