Hi,
I'm trying to automate initial configuration of GAiA gateways and I have an issue when trying to change the password for "admin", like this:
- name: set admin user password hash
check_point.gaia.cp_gaia_user:
name: admin
password_hash: $6$xxxxx
must_change_password: False
When I try this, I get an error:
Checkpoint device returned error 400 with message {'code': 'err_validation_failed', 'errors': 'Cannot change this attribute of user admin', 'msg': 'Validation Error'}
This also happens when I use "password" instead of "password_hash", and it is limited to the "admin" user. I am accessing the API as a separate user "apiuser" because I thought maybe the password of the accessing user cannot be changed, but that's not the issue.
This is on R81.20 JHF89/API level 1.7
So, how do I change that password via the API and ansible?