Skip to content

Commit eb0013b

Browse files
committed
Moving lines
1 parent 0f1b457 commit eb0013b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,10 @@ resource "aws_ecs_task_definition" "td" {
8686
dynamic "volume" {
8787
for_each = var.volumes
8888
content {
89-
host_path = lookup(volume.value, "host_path", null)
9089
name = volume.value.name
9190

91+
host_path = lookup(volume.value, "host_path", null)
92+
9293
dynamic "docker_volume_configuration" {
9394
for_each = lookup(volume.value, "docker_volume_configuration", [])
9495
content {

0 commit comments

Comments
 (0)