ansible/test/integration/targets/eos_vlans/tests/cli/reset_config.yml
Paul Belanger c3635532d3
Revert "Allow httpapi for EOS resource modules (#66871)" (#67131)
This looks to be causing issues for our new ansible.netcommon
collection. Revert for now, until we can properly address.

This reverts commit 53c7f8cbde.
2020-02-06 10:20:08 -05: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) == []"