mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 12:03:58 -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
|
@ -123,7 +123,7 @@
|
|||
|
||||
- name: Teardown list of users
|
||||
junos_user:
|
||||
collection:
|
||||
aggregate:
|
||||
- {name: test_user1, state: absent}
|
||||
- {name: test_user2, state: absent}
|
||||
provider: "{{ netconf }}"
|
||||
|
@ -131,7 +131,7 @@
|
|||
|
||||
- name: Create list of users
|
||||
junos_user:
|
||||
collection:
|
||||
aggregate:
|
||||
- {name: test_user1, full_name: test_user2, role: operator, state: present}
|
||||
- {name: test_user2, full_name: test_user2, role: read-only, state: present}
|
||||
provider: "{{ netconf }}"
|
||||
|
@ -151,7 +151,7 @@
|
|||
|
||||
- name: Delete list of users
|
||||
junos_user:
|
||||
collection:
|
||||
aggregate:
|
||||
- {name: test_user1, full_name: test_user2, role: operator, state: absent}
|
||||
- {name: test_user2, full_name: test_user2, role: read-only, state: absent}
|
||||
provider: "{{ netconf }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue