mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
changed collection arg to argregate on 2.4 network modules (#26649)
* changed collection arg to argregate on 2.4 network modules * replace users with aggregate in eos_user, junos_user, nxos_user * added version_added to places where we replaced users with aggregate in the docs * fix ios_static_route test * update tests to reference aggregate instead of collection/users
This commit is contained in:
committed by
Peter Sprygada
parent
9d771f6eea
commit
8643e9cb34
@@ -127,7 +127,7 @@
|
||||
|
||||
- name: Create collection of linkagg definitions
|
||||
vyos_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0, members: [eth1] }
|
||||
- { name: bond1, members: [eth2] }
|
||||
state: present
|
||||
@@ -143,7 +143,7 @@
|
||||
|
||||
- name: Create collection of linkagg definitions again (idempotent)
|
||||
vyos_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0, members: [eth1] }
|
||||
- { name: bond1, members: [eth2] }
|
||||
state: present
|
||||
@@ -155,7 +155,7 @@
|
||||
|
||||
- name: Remove collection of linkagg definitions
|
||||
vyos_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0 }
|
||||
- { name: bond1 }
|
||||
state: absent
|
||||
@@ -171,7 +171,7 @@
|
||||
|
||||
- name: Remove collection of linkagg definitions again (idempotent)
|
||||
vyos_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0 }
|
||||
- { name: bond1 }
|
||||
state: absent
|
||||
|
||||
Reference in New Issue
Block a user