Hi
I have vars with system users defined:
---
users:
- username: user1
hash: hash1
uid: uid1
- username: user2
hash: hash2
uid: uid2
Additionally every user has his own set of tasks in the yml file to configure his own environment e.g. change .bashrc, .bash_aliases, .vimrc etc.
The easiest way would be to iterate users via with_items and include user specific yml file but since "include + with_items is a removed deprecated feature" it is not possible. So what is the easiest way to acomplish that?
Maybe you've done something similar?