python-openstackclient/releasenotes/notes/add_options_to_user_create_and_set-302401520f36d153.yaml
Vishakha Agarwal 05da145eae Adding options to user cli
User options [1] can be set by making POST and PATCH
request for /v3/users API calls but cannot by openstack
CLI because of no user options defined in create and update
user CLI [2]. This patch adds the user options [1] in
create user and update user CLI.

[1] https://docs.openstack.org/keystone/latest/admin/resource-options.html#multi-factor-auth-rules
[2] https://docs.openstack.org/api-ref/identity/v3/#create-user

Change-Id: I4e41bae2e8cfbe92d52b14d856991bedcd44164f
2020-03-26 22:24:39 +05:30

20 lines
649 B
YAML

---
features:
- |
Added the below mentioned parameters to the user create and set commands.
* --ignore-lockout-failure-attempts
* --no-ignore-lockout-failure-attempts
* --ignore-password-expiry
* --no-ignore-password-expiry
* --ignore-change-password-upon-first-use
* --no-ignore-change-password-upon-first-use
* --enable-lock-password
* --disable-lock-password
* --enable-multi-factor-auth
* --disable-multi-factor-auth
* --multi-factor-auth-rule
This will now allow users to set user options via CLI.
<https://docs.openstack.org/keystone/latest/admin/resource-options.html#user-options>