🚀 Enhancements
Use map for task & task exec policy arns variables @joe-niland (#194)
what
- Replaced variables
task_policy_arns
andtask_exec_policy_arns
withtask_policy_arns_map
andtask_exec_policy_arns_map
respectively - Existing variables were moved to
variables-deprecated.tf
and values will be internally converted to a map if variables are defined
why
- The for_each change implemented in 14008fc has the potential to cause the Terraform '"for_each" value depends on resource attributes that cannot be determined until apply' error.
- Modifying this input to use a map can circumvent this error
references
- closes #191