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 0765829 commit fca6d36Copy full SHA for fca6d36
terraform/dev/locals.tf
@@ -68,9 +68,8 @@ locals {
68
{
69
name = svc
70
image = svc == "api-dev" ? "${local.ecr_repo_urls["dev"]}:placeholder" : task_def.container_image
71
- cpu = task_def.cpu
72
- memory = contains(keys(task_def), "memory") ? task_def.memory : null
73
- memoryReservation = lookup(task_def, "memoryReservation", null)
+ cpu = 256
+ memory = 384
74
essential = true
75
command = svc == "api-dev" ? tolist([
76
"java", "-javaagent:/dd-java-agent.jar",
0 commit comments