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

Mark keystore_pass as 'no_log', to avoid leaking it

This commit is contained in:
Alexander Gubin 2017-03-13 13:14:05 +01:00 committed by Brian Coca
parent 444b67ca0c
commit 06bcff8d92

View file

@ -220,7 +220,7 @@ def main():
cert_alias=dict(type='str'), cert_alias=dict(type='str'),
cert_port=dict(default='443', type='int'), cert_port=dict(default='443', type='int'),
keystore_path=dict(type='str'), keystore_path=dict(type='str'),
keystore_pass=dict(required=True, type='str'), keystore_pass=dict(required=True, type='str', no_log=True),
keystore_create=dict(default=False, type='bool'), keystore_create=dict(default=False, type='bool'),
executable=dict(default='keytool', type='str'), executable=dict(default='keytool', type='str'),
state=dict(default='present', state=dict(default='present',