From 912877c3dd14da53be87b93f206eec2f2969f576 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Sat, 18 Feb 2017 09:29:29 -0500 Subject: [PATCH] adds no_log to provider arg in iosxr shared lib (#21617) --- lib/ansible/module_utils/iosxr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/iosxr.py b/lib/ansible/module_utils/iosxr.py index a770d922c9c..432178d415d 100644 --- a/lib/ansible/module_utils/iosxr.py +++ b/lib/ansible/module_utils/iosxr.py @@ -39,7 +39,7 @@ iosxr_argument_spec = { 'password': dict(fallback=(env_fallback, ['ANSIBLE_NET_PASSWORD']), no_log=True), 'ssh_keyfile': dict(fallback=(env_fallback, ['ANSIBLE_NET_SSH_KEYFILE']), type='path'), 'timeout': dict(type='int'), - 'provider': dict(type='dict') + 'provider': dict(type='dict', no_log=True) } def check_args(module, warnings):