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 #1491

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@
breaking_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``.
13 changes: 8 additions & 5 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 @@ -107,8 +108,6 @@ action_groups:
- ec2_asg_lifecycle_hook
- ec2_customer_gateway
- ec2_customer_gateway_info
- ec2_eip
- ec2_eip_info
- ec2_elb
- ec2_launch_template
- ec2_lc
Expand Down Expand Up @@ -414,6 +413,10 @@ plugin_routing:
ec2_asg_scheduled_action:
# Deprecation for this alias should not *start* prior to 2024-09-01
redirect: community.aws.autoscaling_scheduled_action
ec2_eip:
redirect: amazon.aws.ec2_eip
ec2_eip_info:
redirect: amazon.aws.ec2_eip_info
ec2_elb:
redirect: community.aws.elb_instance
ec2_metric_alarm:
Expand Down Expand Up @@ -455,13 +458,13 @@ plugin_routing:
redirect: amazon.aws.ec2_vpc_route_table_info
elb_classic_lb:
redirect: amazon.aws.ec2_elb_lb
execute_lambda:
# Deprecation for this alias should not *start* prior to 2024-09-01
redirect: community.aws.lambda_execute
elb_application_lb:
redirect: amazon.aws.elb_application_lb
elb_application_lb_info:
redirect: amazon.aws.elb_application_lb_info
execute_lambda:
# Deprecation for this alias should not *start* prior to 2024-09-01
redirect: community.aws.lambda_execute
iam_policy:
redirect: amazon.aws.iam_policy
iam_policy_info:
Expand Down
Loading