mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use no_log for the password for maven_artifact module
This commit is contained in:
parent
9f90c2355f
commit
4c63a958e5
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ def main():
|
|||
extension = dict(default='jar'),
|
||||
repository_url = dict(default=None),
|
||||
username = dict(default=None),
|
||||
password = dict(default=None),
|
||||
password = dict(default=None, no_log=True),
|
||||
state = dict(default="present", choices=["present","absent"]), # TODO - Implement a "latest" state
|
||||
dest = dict(type="path", default=None),
|
||||
validate_certs = dict(required=False, default=True, type='bool'),
|
||||
|
|
Loading…
Reference in a new issue