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:
parent
da82044a84
commit
9b694aadff
@ -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) }}"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user