From 18b0920311dc0fdc2a61313c36747c489389b18c Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Thu, 13 Oct 2016 22:33:37 +0200 Subject: [PATCH] Do not leak the vtp_password in log (#5199) --- lib/ansible/modules/network/nxos/nxos_vtp_password.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/nxos/nxos_vtp_password.py b/lib/ansible/modules/network/nxos/nxos_vtp_password.py index 88eb881af19..3fc504273ec 100644 --- a/lib/ansible/modules/network/nxos/nxos_vtp_password.py +++ b/lib/ansible/modules/network/nxos/nxos_vtp_password.py @@ -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'), )