From 8f18ca45f1c7d59c3b576dbb73cec757dc6b7c9f Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Wed, 2 Aug 2017 00:46:31 +0200 Subject: [PATCH] Comment cli provider creds on junos group_vars (#27611) We set the ansible_ssh_user and ansible_ssh_pass at the inventory level, commenting these out to avoid precedence issue. --- test/integration/group_vars/junos.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/group_vars/junos.yaml b/test/integration/group_vars/junos.yaml index 48d233dbc2f..4672197b7db 100644 --- a/test/integration/group_vars/junos.yaml +++ b/test/integration/group_vars/junos.yaml @@ -7,6 +7,6 @@ netconf: cli: host: "{{ ansible_ssh_host }}" - username: "{{ junos_cli_user | default('ansible') }}" - password: "{{ junos_cli_pass | default('Ansible') }}" + #username: "{{ junos_cli_user | default('ansible') }}" + #password: "{{ junos_cli_pass | default('Ansible') }}" transport: cli