Fix false positive warnings for PostgreSQL User (#17)

This stops a the false positive warnings that the `no_password_changes`
doesn't have the `no_log` set.
pull/20/head
Thomas O'Donnell 2020-03-17 15:23:27 +01:00 committed by GitHub
parent fdc09fa3fd
commit c6a2559719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -806,7 +806,7 @@ def main():
fail_on_user=dict(type='bool', default='yes', aliases=['fail_on_role']),
role_attr_flags=dict(type='str', default=''),
encrypted=dict(type='bool', default='yes'),
no_password_changes=dict(type='bool', default='no'),
no_password_changes=dict(type='bool', default='no', no_log=False),
expires=dict(type='str', default=None),
conn_limit=dict(type='int', default=None),
session_role=dict(type='str'),