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:
parent
444b67ca0c
commit
06bcff8d92
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue