Terraform 0.12 nested for loops
The for expression in your local value association-list is producing a list of list of lists of strings, but your references to it are treating it as a list of lists of strings. To get the flattened representation you wanted, you can use the flatten function, but because it would otherwise group everything into a … Read more