The way lists were combined in tasks/main.yml breaks the role in ansible-core 2.13.x. The resulting variable then contains two separate lists, instead of a combined list.
As far as I could find the syntax "{{ list1 + list2 }}" is also the correct syntax to combine multiple lists into a single one.
The way lists were combined in tasks/main.yml breaks the role in ansible-core 2.13.x. The resulting variable then contains two separate lists, instead of a combined list. As far as I could find the syntax
"{{ list1 + list2 }}"
is also the correct syntax to combine multiple lists into a single one.