mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 23:21:22 -07:00
aci_aaa_user: Fix an issue with clear_password_history (#51459)
This commit is contained in:
parent
b0ac7d9652
commit
9eef9a3702
2 changed files with 39 additions and 1 deletions
|
@ -298,7 +298,7 @@ def main():
|
|||
aaa_password_lifetime = module.params['aaa_password_lifetime']
|
||||
aaa_password_update_required = aci.boolean(module.params['aaa_password_update_required'])
|
||||
aaa_user = module.params['aaa_user']
|
||||
clear_password_history = module.params['clear_password_history']
|
||||
clear_password_history = aci.boolean(module.params['clear_password_history'], 'yes', 'no')
|
||||
description = module.params['description']
|
||||
email = module.params['email']
|
||||
enabled = aci.boolean(module.params['enabled'], 'active', 'inactive')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue