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:
parent
4e7cd76c56
commit
89e8feae0d
1 changed files with 5 additions and 7 deletions
|
@ -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…
Reference in a new issue