23 lines
795 B
YAML
23 lines
795 B
YAML
all:
|
|
vars:
|
|
# The generated inventory is assumed to be used from the clab host.
|
|
# Hence no http proxy should be used. Therefore we make sure the http
|
|
# module does not attempt using any global http proxy.
|
|
ansible_httpapi_use_proxy: false
|
|
children:
|
|
juniper_vjunosrouter:
|
|
vars:
|
|
# ansible_connection: set ansible_connection variable if required
|
|
ansible_user: admin
|
|
ansible_password: admin@123
|
|
hosts:
|
|
clab-leafspine-junrtr1:
|
|
ansible_host: 172.20.20.6
|
|
clab-leafspine-junrtr2:
|
|
ansible_host: 172.20.20.4
|
|
clab-leafspine-junrtr3:
|
|
ansible_host: 172.20.20.3
|
|
clab-leafspine-junrtr4:
|
|
ansible_host: 172.20.20.5
|
|
clab-leafspine-junrtr5:
|
|
ansible_host: 172.20.20.2 |