From 4e6270750a748ae854481e157821f51eda36ded0 Mon Sep 17 00:00:00 2001 From: Nilashish Chakraborty Date: Thu, 12 Sep 2019 16:08:40 +0530 Subject: [PATCH] Set no_log to True for junos_user encrypted_password (#62184) Signed-off-by: NilashishC --- lib/ansible/modules/network/junos/junos_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/junos/junos_user.py b/lib/ansible/modules/network/junos/junos_user.py index aaef0faf6fa..1c9c3ed2ac6 100644 --- a/lib/ansible/modules/network/junos/junos_user.py +++ b/lib/ansible/modules/network/junos/junos_user.py @@ -314,7 +314,7 @@ def main(): name=dict(), full_name=dict(), role=dict(choices=ROLES), - encrypted_password=dict(), + encrypted_password=dict(no_log=True), sshkey=dict(), state=dict(choices=['present', 'absent'], default='present'), active=dict(type='bool', default=True)