Skip to content

Commit

Permalink
Expose efs_volumes var
Browse files Browse the repository at this point in the history
  • Loading branch information
wayne-root committed Dec 14, 2022
1 parent 9bec953 commit 0cef36e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ module "service" {

ecs_load_balancers = lookup(each.value, "ecs_load_balancers", [])

docker_volumes = lookup(each.value, "docker_volumes", [])
docker_volumes = try(each.value.docker_volumes, [])
efs_volumes = try(each.value.efs_volumes, [])

assign_public_ip = var.assign_public_ip

enable_execute_command = var.enable_execute_command
Expand Down

0 comments on commit 0cef36e

Please sign in to comment.