Ansible: Dynamic lists
Hi there, In the last few days I needed to use lists in ansible which are extended and manipulated at runtime. So I will leave a short code snipped here - maybe it is useful for you too: - hosts: localhost connection: local vars: my_list: [ "Hello", "World", "this", "is"…