From 0a99af1780dac9b9fe096ef9548e7a29e5c3c6ab Mon Sep 17 00:00:00 2001 From: Jacob Gillespie Date: Mon, 24 Jul 2023 19:45:34 +0100 Subject: [PATCH] Use 2 CPUs cloud-agent --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index bff5509..9deeac6 100644 --- a/main.tf +++ b/main.tf @@ -392,8 +392,8 @@ resource "aws_ecs_task_definition" "cloud-agent" { count = var.create ? 1 : 0 family = "depot-connection-${var.connection-id}-cloud-agent" requires_compatibilities = ["FARGATE"] - cpu = 512 - memory = 1024 + cpu = 2024 + memory = 4096 network_mode = "awsvpc" execution_role_arn = aws_iam_role.execution-role[0].arn task_role_arn = aws_iam_role.cloud-agent[0].arn