mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
fix missing ident in provider dict assignment (#21089)
Thanks @bverschueren!
This commit is contained in:
@@ -69,10 +69,10 @@ The following two config modules are essentially identical (using nxos_config) a
|
||||
---
|
||||
vars:
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ ansible_ssh_user }}"
|
||||
password: "{{ ansible_ssh_pass }} "
|
||||
transport: cli
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: "{{ ansible_ssh_user }}"
|
||||
password: "{{ ansible_ssh_pass }} "
|
||||
transport: cli
|
||||
|
||||
|
||||
nxos_config:
|
||||
@@ -84,10 +84,10 @@ Given the above two examples that are equivalent, the arguments can also be used
|
||||
---
|
||||
vars:
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: operator
|
||||
password: secret
|
||||
transport: cli
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: operator
|
||||
password: secret
|
||||
transport: cli
|
||||
|
||||
tasks:
|
||||
- nxos_config:
|
||||
@@ -105,10 +105,10 @@ This is true for all values in the provider including transport. So you could h
|
||||
---
|
||||
vars:
|
||||
cli:
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: operator
|
||||
password: secret
|
||||
transport: cli
|
||||
host: "{{ inventory_hostname }}"
|
||||
username: operator
|
||||
password: secret
|
||||
transport: cli
|
||||
|
||||
tasks:
|
||||
- nxos_config:
|
||||
@@ -121,8 +121,8 @@ If all values are provided via the provider argument, the rules for requirements
|
||||
---
|
||||
vars:
|
||||
conn:
|
||||
password: cisco_pass
|
||||
transport: cli
|
||||
password: cisco_pass
|
||||
transport: cli
|
||||
|
||||
tasks:
|
||||
- nxos_config:
|
||||
|
||||
Reference in New Issue
Block a user