typo and no_log remove for password_expire* vars

This commit is contained in:
Tomas 2024-02-20 22:04:53 +02:00
parent 494b537359
commit 3e10ac4851
2 changed files with 7 additions and 7 deletions

View file

@ -429,8 +429,8 @@ def main():
force_context=dict(type='bool', default=False),
session_vars=dict(type='dict'),
column_case_sensitive=dict(type='bool', default=None), # TODO 4.0.0 add default=True
password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval'], no_log=True),
password_expire_interval=dict(type='int', no_log=True),
password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval']),
password_expire_interval=dict(type='int'),
)
module = AnsibleModule(
argument_spec=argument_spec,