Skip to content

Commit

Permalink
Merge pull request #13 from depot/cpu-increase
Browse files Browse the repository at this point in the history
Use 2 CPUs cloud-agent
  • Loading branch information
jacobwgillespie authored Jul 24, 2023
2 parents e49fff9 + 0a99af1 commit 4a0cd82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4a0cd82

Please sign in to comment.