mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -07: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:
parent
9d771f6eea
commit
8643e9cb34
42 changed files with 170 additions and 167 deletions
|
@ -45,11 +45,11 @@ options:
|
|||
description:
|
||||
- List of interfaces to check the VLAN has been
|
||||
configured correctly.
|
||||
collection:
|
||||
aggregate:
|
||||
description: List of VLANs definitions
|
||||
purge:
|
||||
description:
|
||||
- Purge VLANs not defined in the collections parameter.
|
||||
- Purge VLANs not defined in the aggregates parameter.
|
||||
default: no
|
||||
state:
|
||||
description:
|
||||
|
@ -157,7 +157,7 @@ def main():
|
|||
vlan_id=dict(required=True, type='int'),
|
||||
name=dict(),
|
||||
interfaces=dict(),
|
||||
collection=dict(),
|
||||
aggregate=dict(),
|
||||
purge=dict(default=False, type='bool'),
|
||||
state=dict(default='present',
|
||||
choices=['present', 'absent', 'active', 'suspend'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue