c3635532d3
This looks to be causing issues for our new ansible.netcommon
collection. Revert for now, until we can properly address.
This reverts commit 53c7f8cbde
.
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) == []"
|