Do not leak the vtp_password in log (#5199)

This commit is contained in:
Michael Scherer 2016-10-13 22:33:37 +02:00 committed by Matt Clay
parent 3b2b33bf29
commit 18b0920311

View file

@ -404,7 +404,7 @@ def get_vtp_password(module):
def main():
argument_spec = dict(
vtp_password=dict(type='str'),
vtp_password=dict(type='str', no_log=True),
state=dict(choices=['absent', 'present'],
default='present'),
)