mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Mark non-secret leaking module options with no_log=False (#2001)
* Mark non-secret leaking module options with no_log=False. * Add changelog fragment.
This commit is contained in:
@@ -352,7 +352,7 @@ def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
state=dict(default='present', choices=['present', 'absent', 'read']),
|
||||
key=dict(required=True, type='str'),
|
||||
key=dict(required=True, type='str', no_log=False),
|
||||
value=dict(required=False, default=None, type='str'),
|
||||
),
|
||||
supports_check_mode=True
|
||||
|
||||
Reference in New Issue
Block a user