count = 3
list = [a, b, c, d]
I want to create a repeated list whose output will be
[a, a, a, b, b, b, c, c, c, d, d, d]
How can we achieve this in terraform?
count = 3
list = [a, b, c, d]
I want to create a repeated list whose output will be
[a, a, a, b, b, b, c, c, c, d, d, d]
How can we achieve this in terraform?