From 9b694aadffcac1d226bd5c4bbbc964a5bdace78d Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Thu, 10 Aug 2017 10:35:05 +0000 Subject: [PATCH] Fix typo in junos switch provider for SSH private key file This prevented a user from using their own username and SSH key to configure a switch. --- ansible/group_vars/switches/junos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/group_vars/switches/junos b/ansible/group_vars/switches/junos index 4ec8a1f47..c18185494 100644 --- a/ansible/group_vars/switches/junos +++ b/ansible/group_vars/switches/junos @@ -10,7 +10,7 @@ switch_junos_provider: host: "{{ ansible_host|default(inventory_hostname) }}" username: "{{ ansible_user }}" password: "{{ ansible_ssh_pass|default(omit) }}" - ssh_keyfile: "{{ ansible_ssh_private_keyfile|default(omit) }}" + ssh_keyfile: "{{ ansible_ssh_private_key_file|default(omit) }}" timeout: "{{ switch_junos_timeout|default(omit) }}" ###############################################################################