mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
367 B
YAML
16 lines
367 B
YAML
|
---
|
||
|
cli:
|
||
|
host: "{{ ansible_host }}"
|
||
|
username: "{{ eos_cli_user | default('admin') }}"
|
||
|
password: "{{ eos_cli_pass | default('admin') }}"
|
||
|
transport: cli
|
||
|
authorize: yes
|
||
|
|
||
|
eapi:
|
||
|
host: "{{ ansible_host }}"
|
||
|
username: "{{ eos_eapi_user | default('admin') }}"
|
||
|
password: "{{ eos_eapi_pass | default('admin') }}"
|
||
|
transport: eapi
|
||
|
use_ssl: no
|
||
|
authorize: yes
|