Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate ec2_eip* modules and tests #1032

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b2cbbee
Initial commit
jillr Mar 2, 2020
e87543c
migration test cleanup
jillr Mar 3, 2020
1f8aabb
Rename collection (#12)
jillr Mar 25, 2020
82ab13c
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
ad57da8
Collections related fixes for CI (#96)
jillr Jun 16, 2020
391c673
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
dcf0052
Update module_utils paths to remove aws subdir (#23)
flowerysong Jun 16, 2020
44817d8
Update docs (#99)
jillr Jun 17, 2020
1051f15
aws modules: fix examples to use FQCN for builtin modules/plugins (#144)
Andersson007 Jul 17, 2020
1baee7f
Mark a number of integration tests as unstable based on high failure …
tremble Jul 27, 2020
52840d2
Fix VpcId dict key in ec2_eip and add tests (#181)
jillr Aug 6, 2020
6f58659
Bulk migration to AnsibleAWSModule (#173)
tremble Aug 12, 2020
7700558
Fixup ec2_eip tests - work around ec2_instance flakes (#333)
tremble Dec 14, 2020
d3aea23
Fix eip association when both instance id and private ip address are …
Phoosha Dec 15, 2020
08ead9f
ec2_eip - Formally deprecate the 'instance_id' alias. (#349)
tremble Jan 13, 2021
8d54a44
Yet more integration test aliases file cleanup (#431)
tremble Feb 21, 2021
1be8f61
Remove shippable references from repo
jillr Apr 29, 2021
2aa7659
Use md5 hashes for unique prefixes instead of shippable regex
jillr May 20, 2021
1c3004f
Add integration test
tremble Sep 24, 2021
4a9af2e
Fix bug when allocating an EIP with in_vpc not set
tremble Sep 24, 2021
60b080c
ec2_eip tagging support (#332)
tremble Oct 17, 2021
7d49308
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
fad1608
migrate from ansible.netcommon to ansible.utils (#882)
sebastien-rosset Jan 28, 2022
adaab45
Final removal of original boto SDK (#898)
tremble Jan 31, 2022
bad0d88
Stabilize ec2_eip module (#936)
jatorcasso Feb 16, 2022
a3cda20
Integration test dependency cleanup (#1086)
tremble Apr 22, 2022
ddf6313
ec2_eip - remove wait_timeout (#1159)
tremble May 25, 2022
85ea736
Tagging fragment - Move simplest cases over to the docs fragment. (#1…
tremble Jun 1, 2022
66df5e8
Update runtime
alinabuzachis Sep 16, 2022
5ad61b7
Update FQDN
alinabuzachis Sep 16, 2022
d90edba
Remove collection reference inside the tests
alinabuzachis Sep 16, 2022
4e804c6
Add changelog fragment
alinabuzachis Sep 16, 2022
1c65199
Fix FQDN
alinabuzachis Sep 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changelogs/fragments/migrate_ec2_eip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
major_changes:
- ec2_eip - The module has been migrated from the ``community.aws`` collection. Playbooks
using the Fully Qualified Collection Name for this module should be updated to use
``amazon.aws.ec2_eip``.
- ec2_eip_info - The module has been migrated from the ``community.aws`` collection.
Playbooks using the Fully Qualified Collection Name for this module should be updated
to use ``amazon.aws.ec2_eip_info``.
3 changes: 3 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
requires_ansible: '>=2.9.10'
action_groups:
aws:
Expand Down Expand Up @@ -47,6 +48,8 @@ action_groups:
- s3_object
- elb_application_lb
- elb_application_lb_info
- ec2_eip
- ec2_eip_info
plugin_routing:
action:
aws_s3:
Expand Down
Loading