This looks to be causing issues for our new ansible.netcommon
collection. Revert for now, until we can properly address.
This reverts commit 53c7f8cbde
.
16 lines
309 B
YAML
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
|