Hi,
Following construct does not changes the password on the existing user:
- name: Creation of users...
keystone_user: user={{ item.user }} tenant=admin password={{ item.pass }} email={{ item.mail }} login_user={{ adminuser }} login_password={{ adminpass }} endpoint={{ endpoint }} login_tenant_name={{ tenant }}
with_items:
........
- { user: 'admin', pass: 'newpass', mail: 'admin@domain.com' }
tags:
- create_user
All variables were mentioned in role variable file, and I can create new users with it. But using it against existing users with new password do nothing
Is that intended behaviour of this module - or I`m missing something?