From 2c773ae3469b2cb33177271e4e5ccfd1dc234e32 Mon Sep 17 00:00:00 2001 From: Jorge Falcon <22119513+BCTBB@users.noreply.github.com> Date: Wed, 23 Jul 2025 12:08:28 -0400 Subject: [PATCH] Dogfood - Increasing instance size for fleetbot from small -> medium (#31177) - Modifying fleetbot instance size t3.small -> t3. medium to match manual instance resize --- infrastructure/dogfood/terraform/aws-tf-module/ec2.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/dogfood/terraform/aws-tf-module/ec2.tf b/infrastructure/dogfood/terraform/aws-tf-module/ec2.tf index fefa1f6073..4eb4beca97 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/ec2.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/ec2.tf @@ -1,6 +1,6 @@ resource "aws_instance" "fleetbot" { ami = "ami-0d1b5a8c13042c939" # us-east-2 - Ubuntu 24.04 LTS - instance_type = "t3.small" + instance_type = "t3.medium" subnet_id = module.main.vpc.private_subnets[0] # take the first subnet in the list vpc_security_group_ids = [aws_security_group.fleetbot.id]