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 6 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 = """ EXAMPLES = """
- name: configure VLAN ID and name - name: configure VLAN ID and name
junos_vlan: junos_vlan:
vlan_name: test name: test
vlan_id: 20 vlan_id: 20
name: test-vlan
- name: Link to logical layer 3 interface - name: Link to logical layer 3 interface
junos_vlan: junos_vlan:
vlan_name: test name: test
vlan_id: 20 vlan_id: 20
l3-interface: vlan.20 l3-interface: vlan.20
name: test-vlan
- name: remove VLAN configuration - name: remove VLAN configuration
junos_vlan: junos_vlan:
vlan_name: test name: test
state: absent state: absent
- name: deactive VLAN configuration - name: deactive VLAN configuration
junos_vlan: junos_vlan:
vlan_name: test name: test
state: present state: present
active: False active: False
- name: activate VLAN configuration - name: activate VLAN configuration
junos_vlan: junos_vlan:
vlan_name: test name: test
state: present state: present
active: True active: True

Loading…
Cancel
Save