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.
pull/61021/head
Daniel Mellado 5 years ago committed by GitHub
parent 4e7cd76c56
commit 89e8feae0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save