For some reason, the ec2_asg module does not handle tags the same way as other modules.
Most modules let you do this:
tags:
fred: wilma
barney: betty
In the ec2_asg module, that results in an error message about not being able to convert a dict to a list.
In the ec2_asg module, I have to do something like this:
tags: [{fred: wilma}, {barney:betty}]
How can I do this automatically? How can I convert the former type to a variable I can use with ec2_asg?
Regards, k.