aci_aaa_user: Fix an issue with clear_password_history (#51459)

This commit is contained in:
Dag Wieers 2019-01-30 01:49:33 +01:00 committed by GitHub
commit 9eef9a3702
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 1 deletions

View file

@ -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')