446dcb7c96
* Initial commit of module files * Add tests, implement facts * Implement config, fix issues * Handle vlan ranges from the device * Deprecate eos_vlan
25 lines
453 B
YAML
25 lines
453 B
YAML
---
|
|
- name: Reset initial config
|
|
cli_config:
|
|
config: |
|
|
no vlan 1-4094
|
|
vlan 10
|
|
name ten
|
|
vlan 20
|
|
name twenty
|
|
become: yes
|
|
|
|
- eos_facts:
|
|
gather_network_resources: vlans
|
|
become: yes
|
|
|
|
- set_fact:
|
|
expected_config:
|
|
- vlan_id: 10
|
|
name: ten
|
|
- vlan_id: 20
|
|
name: twenty
|
|
|
|
- assert:
|
|
that:
|
|
- "expected_config|symmetric_difference(ansible_facts.network_resources.vlans) == []"
|