adds no_log to provider arg in iosxr shared lib (#21617)

This commit is contained in:
Peter Sprygada 2017-02-18 09:29:29 -05:00 committed by GitHub
parent c875393916
commit 912877c3dd

View file

@ -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):