Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Previous behavior is your molecule group would only contain the last platform since the elements were not merging: https://docs.ansible.com/ansible/latest/collections/ansible/builtin/combine_filter.html ``` TASK [Display uname info] ****************************************************** ok: [foo] => { "msg": "Linux...\n" } ``` New behavior is all of your platforms will be in the host inventory ``` TASK [Display uname info] ****************************************************** ok: [foo] => { "msg": "Linux...\n" } ok: [bar] => { "msg": "Linux...\n" } ``` Fixes: #4058
- Loading branch information