1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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.
This commit is contained in:
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

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