We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f1b457 commit eb0013bCopy full SHA for eb0013b
main.tf
@@ -86,9 +86,10 @@ resource "aws_ecs_task_definition" "td" {
86
dynamic "volume" {
87
for_each = var.volumes
88
content {
89
- host_path = lookup(volume.value, "host_path", null)
90
name = volume.value.name
91
+ host_path = lookup(volume.value, "host_path", null)
92
+
93
dynamic "docker_volume_configuration" {
94
for_each = lookup(volume.value, "docker_volume_configuration", [])
95
0 commit comments