Skip to content

Commit 9e8fbef

Browse files
committed
fix: 메모리 예약 감소
1 parent fca6d36 commit 9e8fbef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/dev/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ locals {
6969
name = svc
7070
image = svc == "api-dev" ? "${local.ecr_repo_urls["dev"]}:placeholder" : task_def.container_image
7171
cpu = 256
72-
memory = 384
72+
memory = 256
7373
essential = true
7474
command = svc == "api-dev" ? tolist([
7575
"java", "-javaagent:/dd-java-agent.jar",

terraform/dev/terraform.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ecs_services = {
1616
ecs_task_definitions_base = {
1717
api-dev = {
1818
cpu = 512
19-
memory = 512
19+
memory = 384
2020
network_mode = "bridge"
2121
requires_compatibilities = ["EC2"]
2222

0 commit comments

Comments
 (0)