mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add missing no_log values. (#2018)
This commit is contained in:
parent
d0fa5060df
commit
b0cbef394f
3 changed files with 6 additions and 3 deletions
3
changelogs/fragments/missing-no_log-again.yml
Normal file
3
changelogs/fragments/missing-no_log-again.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
security_fixes:
|
||||
- "na_cdot_user - mark the ``set_password`` parameter as ``no_log`` to avoid leakage of secrets (https://github.com/ansible-collections/community.general/pull/2018)."
|
||||
- "sf_account_manager - mark the ``initiator_secret`` and ``target_secret`` parameters as ``no_log`` to avoid leakage of secrets (https://github.com/ansible-collections/community.general/pull/2018)."
|
|
@ -127,7 +127,7 @@ class NetAppCDOTUser(object):
|
|||
choices=['community', 'password',
|
||||
'publickey', 'domain',
|
||||
'nsswitch', 'usm']),
|
||||
set_password=dict(required=False, type='str', default=None),
|
||||
set_password=dict(required=False, type='str', default=None, no_log=True),
|
||||
role_name=dict(required=False, type='str'),
|
||||
|
||||
vserver=dict(required=True, type='str'),
|
||||
|
|
|
@ -115,8 +115,8 @@ class SolidFireAccount(object):
|
|||
account_id=dict(required=False, type='int', default=None),
|
||||
|
||||
new_name=dict(required=False, type='str', default=None),
|
||||
initiator_secret=dict(required=False, type='str'),
|
||||
target_secret=dict(required=False, type='str'),
|
||||
initiator_secret=dict(required=False, type='str', no_log=True),
|
||||
target_secret=dict(required=False, type='str', no_log=True),
|
||||
attributes=dict(required=False, type='dict'),
|
||||
status=dict(required=False, type='str'),
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue