Skip to content

Commit

Permalink
fix: this
Browse files Browse the repository at this point in the history
  • Loading branch information
rstuhlmuller authored Mar 6, 2024
1 parent 70c2a9a commit 2717c88
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 @@ -227,8 +227,8 @@ resource "aws_ecs_task_definition" "runner" {
family = "${var.cluster_name}_${each.key}"
requires_compatibilities = ["FARGATE"]
network_mode = "awsvpc"
cpu = 1024 * ${try(each.value.cpu, 1)}
memory = 1024 * ${try(each.value.memory, 3)}
cpu = 1024 * try(each.value.cpu, 1)
memory = 1024 * try(each.value.memory, 3)
execution_role_arn = aws_iam_role.ecs_task_execution_role.arn
container_definitions = jsonencode([
{
Expand Down

0 comments on commit 2717c88

Please sign in to comment.