Is it possible to convert a list of lists/dicts to a list of strings using a formatting string in Ansible / Jinja2?
I understand I can do something like:
{{["First: %d", "Second: %d"] | map("format", 1) | join(", ") }}
To get First: 1, Second 1.
Would it be possible to do something like
{{[[1, 1], [2, 2]] | map("format", "Num %d, %d") | join(", ") }}
and result in Num 1, 1, Num 2, 2?