-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove collection reference inside the tests
- Loading branch information
1 parent
672fab9
commit 99ab7d7
Showing
7 changed files
with
1,258 additions
and
1,359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
tests/integration/targets/kms_key/roles/aws_kms/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
kms_key_alias: "ansible-test-{{ inventory_hostname | replace('_','-') }}{{ tiny_prefix }}" | ||
kms_key_alias: ansible-test-{{ inventory_hostname | replace('_','-') }}{{ tiny_prefix | ||
}} |
8 changes: 3 additions & 5 deletions
8
tests/integration/targets/kms_key/roles/aws_kms/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
--- | ||
- name: 'aws_kms integration tests' | ||
- name: aws_kms integration tests | ||
collections: | ||
- amazon.aws | ||
- community.aws | ||
- community.aws | ||
module_defaults: | ||
group/aws: | ||
aws_access_key: '{{ aws_access_key }}' | ||
aws_secret_key: '{{ aws_secret_key }}' | ||
security_token: '{{ security_token | default(omit) }}' | ||
region: '{{ aws_region }}' | ||
block: | ||
- include: './test_{{ inventory_hostname }}.yml' | ||
- include: ./test_{{ inventory_hostname }}.yml |
Oops, something went wrong.