ansible/test/integration/targets/eos_vlans/tests/cli/reset_config.yml
Nathaniel Case 446dcb7c96
New module eos_vlans (#60652)
* Initial commit of module files

* Add tests, implement facts

* Implement config, fix issues

* Handle vlan ranges from the device

* Deprecate eos_vlan
2019-08-19 09:02:38 -04:00

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) == []"