diff --git a/meta/collection-requirements.yml b/meta/collection-requirements.yml index 92a0244..54291c6 100644 --- a/meta/collection-requirements.yml +++ b/meta/collection-requirements.yml @@ -1,4 +1,4 @@ --- collections: - name: ansible.posix - - name: community.general + - name: microsoft.ad diff --git a/tests/collection-requirements.yml b/tests/collection-requirements.yml index 0aff784..f439feb 100644 --- a/tests/collection-requirements.yml +++ b/tests/collection-requirements.yml @@ -3,4 +3,4 @@ collections: - community.windows - ansible.windows - - community.general + - microsoft.ad diff --git a/tests/tests_full_integration.yml b/tests/tests_full_integration.yml index ec3fa61..04fb627 100644 --- a/tests/tests_full_integration.yml +++ b/tests/tests_full_integration.yml @@ -26,8 +26,8 @@ - name: Prepare user and groups on the AD hosts: ad tasks: - - name: Create groups - win_domain_group: + - name: Create groups # noqa syntax-check[unknown-module] + microsoft.ad.group: name: "{{ item.name }}" state: present scope: "{{ item.scope }}" @@ -40,7 +40,7 @@ var: group_creation - name: Add a test user - win_domain_user: + microsoft.ad.user: # noqa syntax-check[unknown-module] name: "{{ item.name }}" firstname: "{{ item.first_name }}" surname: "{{ item.surname }}" diff --git a/tests/tests_full_integration_dc.yml b/tests/tests_full_integration_dc.yml index 3f3ff00..c89c4a4 100644 --- a/tests/tests_full_integration_dc.yml +++ b/tests/tests_full_integration_dc.yml @@ -34,8 +34,8 @@ - name: Prepare user and groups on the AD hosts: ad tasks: - - name: Create groups - win_domain_group: + - name: Create groups # noqa syntax-check[unknown-module] + microsoft.ad.group: name: "{{ item.name }}" state: present scope: "{{ item.scope }}" @@ -48,7 +48,7 @@ var: group_creation - name: Add a test user - win_domain_user: + microsoft.ad.user: # noqa syntax-check[unknown-module] name: "{{ item.name }}" firstname: "{{ item.first_name }}" surname: "{{ item.surname }}" diff --git a/tests/tests_full_integration_force_rejoin.yml b/tests/tests_full_integration_force_rejoin.yml index de374d6..8411671 100644 --- a/tests/tests_full_integration_force_rejoin.yml +++ b/tests/tests_full_integration_force_rejoin.yml @@ -29,8 +29,8 @@ - name: Prepare user and groups on the AD hosts: ad tasks: - - name: Create groups - win_domain_group: + - name: Create groups # noqa syntax-check[unknown-module] + microsoft.ad.group: name: "{{ item.name }}" state: present scope: "{{ item.scope }}" @@ -43,7 +43,7 @@ var: group_creation - name: Add a test user - win_domain_user: + microsoft.ad.user: # noqa syntax-check[unknown-module] name: "{{ item.name }}" firstname: "{{ item.first_name }}" surname: "{{ item.surname }}"