Skip to content

Commit

Permalink
Expand connection plugins used in CI (#577)
Browse files Browse the repository at this point in the history
Expands the testing matrix of the Windows connection plugins used in CI
to cover all the supported connections of Windows.
  • Loading branch information
jborean93 committed Jan 7, 2025
1 parent a4dd781 commit d77dc63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/targets/win_credential/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ansible_become: True
ansible_become_method: runas
ansible_become_user: '{{ ansible_user }}'
ansible_become_pass: '{{ ansible_password }}'
ansible_become_pass: '{{ ansible_password | default(ansible_test_connection_password) }}'

- name: ensure test credentials are removed before testing
win_credential:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/targets/win_credential/tasks/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ansible_become: True
ansible_become_method: runas
ansible_become_user: '{{ ansible_user }}'
ansible_become_pass: '{{ ansible_password }}'
ansible_become_pass: '{{ ansible_password | default(ansible_test_connection_password) }}'

- name: get result of create domain user credential (check mode)
test_cred_facts:
Expand Down

0 comments on commit d77dc63

Please sign in to comment.