Skip to content

Commit b1abd2a

Browse files
committed
fix: 테스크 커멘드 롤백
1 parent 589269e commit b1abd2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terraform/dev/ecs/locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ locals {
8383
memory = def.memory
8484
essential = true
8585
stopTimeout = lookup(def, "stop_timeout", var.default_stop_timeout)
86-
command = [
86+
command = svc == "api-dev" ? [
8787
"java",
8888
"-Dspring.profiles.active=dev",
8989
"-jar",
9090
"/api.jar"
91-
]
91+
] : null
9292

9393
portMappings = [
9494
for idx, port in def.container_port : {

0 commit comments

Comments
 (0)