How to create a list with the repeated items in the list?

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?