We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96e749 commit 0a54c7bCopy full SHA for 0a54c7b
main.tf
@@ -402,8 +402,8 @@ resource "aws_ecs_task_definition" "cloud-agent" {
402
count = var.create ? 1 : 0
403
family = "depot-connection-${var.connection-id}-cloud-agent"
404
requires_compatibilities = ["FARGATE"]
405
- cpu = 2048
406
- memory = 4096
+ cpu = "2048"
+ memory = "4096"
407
network_mode = "awsvpc"
408
execution_role_arn = aws_iam_role.execution-role[0].arn
409
task_role_arn = aws_iam_role.cloud-agent[0].arn
0 commit comments