Hi Willard,
Keeping information in one place, is there a reason why you cannot change it_users to be dictionaries?
it_users:
- { name: bill, uid: 501, passwd: hash, home: /home/bill }
- { name: fred, uid: 501, ... }
- { name: sam, ... }
Now you can access these items in the user module or elsewhere like this:
- user: name={{
item.name }} home={{ item.home }} password={{ item.passwd }}
with_items: it_staff
Regards,
-Tore