Skip to content

Commit f38e0d1

Browse files
committed
fix: 포트 매핑 수정
1 parent 2cc424c commit f38e0d1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

terraform/dev/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ variable "ecs_task_definitions_base" {
1818
container_image = optional(string)
1919
execution_role_arn = optional(string)
2020
task_role_arn = optional(string)
21+
port_mappings = optional(list(object({
22+
container_port = number
23+
host_port = number
24+
protocol = string
25+
})), [])
2126
volumes = list(object({
2227
name = string
2328
host_path = string

0 commit comments

Comments
 (0)