mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
set no_log for url_password
This commit is contained in:
parent
441ccd3a58
commit
3befc894e1
1 changed files with 1 additions and 1 deletions
|
@ -932,7 +932,7 @@ def url_argument_spec():
|
||||||
use_proxy=dict(default='yes', type='bool'),
|
use_proxy=dict(default='yes', type='bool'),
|
||||||
validate_certs=dict(default='yes', type='bool'),
|
validate_certs=dict(default='yes', type='bool'),
|
||||||
url_username=dict(required=False),
|
url_username=dict(required=False),
|
||||||
url_password=dict(required=False),
|
url_password=dict(required=False, no_log=True),
|
||||||
force_basic_auth=dict(required=False, type='bool', default='no'),
|
force_basic_auth=dict(required=False, type='bool', default='no'),
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue