Skip to content

Commit 8d4a552

Browse files
committed
fix: enable autoscaling
1 parent b398692 commit 8d4a552

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

terraform/ecs/variables.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ variable "task_memory" {
2929
variable "autoscaling_desired_count" {
3030
description = "Minimum number of instances in the autoscaling group"
3131
type = number
32-
default = 1
32+
default = 2
3333
}
3434

3535
variable "autoscaling_min_capacity" {
3636
description = "Minimum number of instances in the autoscaling group"
3737
type = number
38-
default = 1
38+
default = 2
3939
}
4040

4141
variable "autoscaling_max_capacity" {
4242
description = "Maximum number of instances in the autoscaling group"
4343
type = number
44-
default = 1
44+
default = 8
4545
}
4646

4747
variable "cloudwatch_logs_key_arn" {

0 commit comments

Comments
 (0)