ansible/test/integration/targets/eos_l2_interfaces/tests/cli/cleanup.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

16 lines
309 B
YAML

---
- name: Remove all vlans
cli_config:
config: no vlan 1-4094
become: yes
- name: Completely remove vlans from interfaces
cli_config:
config: |
interface {{ item }}
no switchport mode
no switchport access vlan
with_items:
- Ethernet1
- Ethernet2
become: yes