[01:08] out of curiosity, about that "Format for 'users' key must be a comma separated string or a dictionary or a list and not NoneType" you got when using the "set list" powersj. I discovered a way to make it works [01:09] since i have this variable called usernamelist that comes from terraform as a string [01:09] i just do this: [01:09] {% set list1 = "${usernamelist}".split(',') %} [01:09] then i can iterate just like we were doing [01:09] {% for name in list1 %} [01:09] :D