Suppose I have an array in ansible:
vars:
loopme: ['somesing', 'someothersing']
concatenateme: 'constant'
How do i iterate over the list and concat value from list with the variable concatenateme?
So I get somesingconstant
and someothersingconstant
and put the result into a field in the task? Perhaps with jinja?