mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Do not leak mail password by error
This commit is contained in:
parent
0dd3296ddd
commit
b8706a1f95
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
username = dict(default=None),
|
username = dict(default=None),
|
||||||
password = dict(default=None),
|
password = dict(default=None, no_log=True),
|
||||||
host = dict(default='localhost'),
|
host = dict(default='localhost'),
|
||||||
port = dict(default='25'),
|
port = dict(default='25'),
|
||||||
sender = dict(default='root', aliases=['from']),
|
sender = dict(default='root', aliases=['from']),
|
||||||
|
|
Loading…
Reference in a new issue