diff --git a/infrastructure/dogfood/terraform/aws-tf-module/free.tf b/infrastructure/dogfood/terraform/aws-tf-module/free.tf index 68aebe0177..12a9ecd6a8 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/free.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/free.tf @@ -56,6 +56,10 @@ module "free" { image = local.fleet_image family = local.customer_free security_group_name = local.customer_free + autoscaling = { + min_capacity = 2 + max_capacity = 5 + } awslogs = { name = local.customer_free retention = 365 diff --git a/infrastructure/dogfood/terraform/aws-tf-module/main.tf b/infrastructure/dogfood/terraform/aws-tf-module/main.tf index df8041ca60..c7e1959688 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/main.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/main.tf @@ -87,6 +87,10 @@ module "main" { fleet_config = { image = local.fleet_image family = local.customer + autoscaling = { + min_capacity = 2 + max_capacity = 5 + } awslogs = { name = local.customer retention = 365