23 lines
271 B
YAML
23 lines
271 B
YAML
- hosts: '*'
|
|
gather_facts: false
|
|
roles:
|
|
- facts
|
|
|
|
# Set up fabric.
|
|
- hosts: spine-*
|
|
roles:
|
|
- spine
|
|
|
|
- hosts: leaf-*
|
|
roles:
|
|
- leaf
|
|
|
|
- hosts: exit-*
|
|
roles:
|
|
- exit
|
|
|
|
# Set up access switches.
|
|
- hosts: sw-*
|
|
gather_facts: false
|
|
roles:
|
|
- access
|