Skip to content

Commit

Permalink
fix(infra): restore asg min and desired size
Browse files Browse the repository at this point in the history
  • Loading branch information
ssupecial committed Aug 13, 2024
1 parent 597c917 commit 862278c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ resource "aws_autoscaling_group" "this" {
name = var.autoscaling_group.name
vpc_zone_identifier = [for key in keys(var.subnets) : aws_subnet.this[key].id]

desired_capacity = 0
min_size = 0
desired_capacity = 1
min_size = 1
max_size = var.autoscaling_group.max_size

mixed_instances_policy {
Expand Down

0 comments on commit 862278c

Please sign in to comment.