1
0
Fork 0
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:
Michael Scherer 2016-03-21 00:24:35 +01:00 committed by Matt Clay
parent 9f90c2355f
commit 4c63a958e5

View file

@ -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'),