Fix junos_vlan documentation (#60278)

This commit fixes junos_vlan documentation so it no longer has any
reference to the non-valid value vlan_name.
This commit is contained in:
Daniel Mellado 2019-08-21 15:49:40 +02:00 committed by GitHub
parent 4e7cd76c56
commit 89e8feae0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,31 +79,29 @@ extends_documentation_fragment: junos
EXAMPLES = """
- name: configure VLAN ID and name
junos_vlan:
vlan_name: test
name: test
vlan_id: 20
name: test-vlan
- name: Link to logical layer 3 interface
junos_vlan:
vlan_name: test
name: test
vlan_id: 20
l3-interface: vlan.20
name: test-vlan
- name: remove VLAN configuration
junos_vlan:
vlan_name: test
name: test
state: absent
- name: deactive VLAN configuration
junos_vlan:
vlan_name: test
name: test
state: present
active: False
- name: activate VLAN configuration
junos_vlan:
vlan_name: test
name: test
state: present
active: True