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.
This commit is contained in:
Mark Goddard 2017-08-10 10:35:05 +00:00
parent da82044a84
commit 9b694aadff

View File

@ -10,7 +10,7 @@ switch_junos_provider:
host: "{{ ansible_host|default(inventory_hostname) }}" host: "{{ ansible_host|default(inventory_hostname) }}"
username: "{{ ansible_user }}" username: "{{ ansible_user }}"
password: "{{ ansible_ssh_pass|default(omit) }}" 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) }}" timeout: "{{ switch_junos_timeout|default(omit) }}"
############################################################################### ###############################################################################