Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(infra): restore asg min and desired size #1955

Merged
merged 9 commits into from
Aug 13, 2024
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
Loading