Skip to content

Commit 589269e

Browse files
committed
fix: 테스크 커멘드 수정
1 parent fb2dc58 commit 589269e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

terraform/dev/ecs/locals.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,12 @@ locals {
8383
memory = def.memory
8484
essential = true
8585
stopTimeout = lookup(def, "stop_timeout", var.default_stop_timeout)
86-
87-
command = def.task_definition_name == "api-dev" ? [
86+
command = [
8887
"java",
8988
"-Dspring.profiles.active=dev",
9089
"-jar",
9190
"/api.jar"
92-
] : null
91+
]
9392

9493
portMappings = [
9594
for idx, port in def.container_port : {

0 commit comments

Comments
 (0)