mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
fix aggregate doc example (#28528)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
c2e41bf1ef
commit
4271f6e5e6
3 changed files with 10 additions and 12 deletions
|
@ -96,10 +96,8 @@ EXAMPLES = """
|
|||
- name: Create interface using aggregate
|
||||
net_interface:
|
||||
aggregate:
|
||||
- name: ge-0/0/1
|
||||
description: test-interface-1
|
||||
- name: ge-0/0/2
|
||||
description: test-interface-2
|
||||
- { name: ge-0/0/1, description: test-interface-1 }
|
||||
- { name: ge-0/0/2, description: test-interface-2 }
|
||||
speed: 1g
|
||||
duplex: full
|
||||
mtu: 512
|
||||
|
@ -107,8 +105,8 @@ EXAMPLES = """
|
|||
- name: Delete interface using aggregate
|
||||
junos_interface:
|
||||
aggregate:
|
||||
- name: ge-0/0/1
|
||||
- name: ge-0/0/2
|
||||
- { name: ge-0/0/1 }
|
||||
- { name: ge-0/0/2 }
|
||||
state: absent
|
||||
|
||||
- name: Check intent arguments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue