mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
YAML
16 lines
367 B
YAML
8 years ago
|
---
|
||
|
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
|