mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
Add no_log=False to passphrase_encoding.
This commit is contained in:
2
changelogs/fragments/867-passphrase-encoding-nolog.yml
Normal file
2
changelogs/fragments/867-passphrase-encoding-nolog.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "luks_device - mark parameter ``passphrase_encoding`` as ``no_log=False`` to avoid confusing warning (https://github.com/ansible-collections/community.crypto/pull/867)."
|
||||
@@ -990,7 +990,7 @@ def run_module():
|
||||
passphrase=dict(type='str', no_log=True),
|
||||
new_passphrase=dict(type='str', no_log=True),
|
||||
remove_passphrase=dict(type='str', no_log=True),
|
||||
passphrase_encoding=dict(type='str', default='text', choices=['text', 'base64']),
|
||||
passphrase_encoding=dict(type='str', default='text', choices=['text', 'base64'], no_log=False),
|
||||
keyslot=dict(type='int', no_log=False),
|
||||
new_keyslot=dict(type='int', no_log=False),
|
||||
remove_keyslot=dict(type='int', no_log=False),
|
||||
|
||||
Reference in New Issue
Block a user