keystone_user module is not changing the password for existint user?

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 :frowning:

Is that intended behaviour of this module - or I`m missing something?

Hi Nick, that does sound like a potential bug. Could you open an issue on github so we can keep track of this? Thanks!

Hi James,

https://github.com/ansible/ansible/issues/4415

Cheers,
NM