From 1609c0fcb5c7dc2b1cbdc52cf76cca941d1782e2 Mon Sep 17 00:00:00 2001 From: Robert Fairburn <8029478+rfairburn@users.noreply.github.com> Date: Wed, 29 Nov 2023 09:06:41 -0600 Subject: [PATCH] Increase dogfood containers to avoid vulnerabilities failures (#15357) --- infrastructure/dogfood/terraform/aws-tf-module/free.tf | 4 ++++ infrastructure/dogfood/terraform/aws-tf-module/main.tf | 4 ++++ 2 files changed, 8 insertions(+) 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