Skip to content

Commit 0a54c7b

Browse files
Use strings for cpu / memory values
1 parent c96e749 commit 0a54c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ resource "aws_ecs_task_definition" "cloud-agent" {
402402
count = var.create ? 1 : 0
403403
family = "depot-connection-${var.connection-id}-cloud-agent"
404404
requires_compatibilities = ["FARGATE"]
405-
cpu = 2048
406-
memory = 4096
405+
cpu = "2048"
406+
memory = "4096"
407407
network_mode = "awsvpc"
408408
execution_role_arn = aws_iam_role.execution-role[0].arn
409409
task_role_arn = aws_iam_role.cloud-agent[0].arn

0 commit comments

Comments
 (0)