You've already forked community.general
mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-12 23:02:47 +03: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:
@@ -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'),
|
||||
|
Reference in New Issue
Block a user