forked from ansible-collections/community.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Launch Template cleanup retries and add tests into CI (ansible-collec…
…tions#326) * Mark ec2_launch_template tests as supported * Update launch template test to use permitted harmless managed policy * Make sure we delete the instance profile * Cleanup imports * use ansible_dict_to_boto3_tag_list * Make sure retries are enabled * Update role names in line with CI policy * Lookup AMI name rather than hardcoding IDs * Add changelog fragment
- Loading branch information
Showing
9 changed files
with
55 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
minor_changes: | ||
- ec2_launch_template - Add retries on common AWS failures (https://github.com/ansible-collections/community.aws/pull/326). |
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
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 @@ | ||
cloud/aws | ||
unsupported | ||
shippable/aws/group3 |
19 changes: 2 additions & 17 deletions
19
...gration/targets/ec2_launch_template/playbooks/roles/ec2_launch_template/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,18 +1,3 @@ | ||
--- | ||
resource_prefix: ansible-test-default-group | ||
ec2_ami_image: | ||
# https://wiki.centos.org/Cloud/AWS collected 2018-01-10 | ||
ap-northeast-1: ami-571e3c30 | ||
ap-northeast-2: ami-97cb19f9 | ||
ap-south-1: ami-11f0837e | ||
ap-southeast-1: ami-30318f53 | ||
ap-southeast-2: ami-24959b47 | ||
ca-central-1: ami-daeb57be | ||
eu-central-1: ami-7cbc6e13 | ||
eu-west-1: ami-0d063c6b | ||
eu-west-2: ami-c22236a6 | ||
sa-east-1: ami-864f2dea | ||
us-east-1: ami-ae7bfdb8 | ||
us-east-2: ami-9cbf9bf9 | ||
us-west-1: ami-7c280d1c | ||
us-west-2: ami-0c2aba6c | ||
ec2_ami_name: amzn2-ami-hvm-2.*-x86_64-gp2 | ||
test_role_name: ansible-test-{{ resource_prefix }} |
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
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
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
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
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