Skip to content

Commit

Permalink
fix: revert
Browse files Browse the repository at this point in the history
  • Loading branch information
JianLi-Expedia committed Nov 19, 2024
1 parent a015e2e commit 86ed5ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "aws_ecs_task_definition" "apiary_hms_readwrite" {
memory = var.hms_rw_heapsize
cpu = var.hms_rw_cpu
requires_compatibilities = var.ecs_requires_compatibilities
container_definitions = jsonencode(local.hms_readwrite_template)
container_definitions = local.hms_readwrite_template
tags = var.apiary_tags
}

Expand All @@ -38,7 +38,7 @@ resource "aws_ecs_task_definition" "apiary_hms_readonly" {
memory = var.hms_ro_heapsize
cpu = var.hms_ro_cpu
requires_compatibilities = var.ecs_requires_compatibilities
container_definitions = jsonencode(local.hms_readonly_template)
container_definitions = local.hms_readonly_template
tags = var.apiary_tags
}

Expand Down

0 comments on commit 86ed5ff

Please sign in to comment.