Skip to content

Commit 95f9f2f

Browse files
Prep amazon.aws 9.1.0 release (#2411)
SUMMARY ISSUE TYPE Feature Pull Request COMPONENT NAME several ADDITIONAL INFORMATION Reviewed-by: Mark Chappell Reviewed-by: Bikouo Aubin
1 parent 62a934b commit 95f9f2f

12 files changed

+98
-45
lines changed

CHANGELOG.rst

+38
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,44 @@ amazon.aws Release Notes
44

55
.. contents:: Topics
66

7+
v9.1.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This release brings several bugfixes, minor changes, a new ``rds_instance_param_group_info`` module, and some deprecations for the ``autoscaling_group`` module.
14+
15+
Minor Changes
16+
-------------
17+
18+
- autoscaling_group - adds ``group_name`` as an alias for the ``name`` parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
19+
- autoscaling_group_info - adds ``group_name`` as an alias for the ``name`` parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
20+
- autoscaling_instance_refresh - adds ``group_name`` as an alias for the ``name`` parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
21+
- autoscaling_instance_refresh_info - adds ``group_name`` as an alias for the ``name`` parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
22+
- ec2_instance - Fix the issue when trying to run instances using launch template in an AWS environment where no default subnet is defined(https://github.com/ansible-collections/amazon.aws/issues/2321).
23+
- ec2_metadata_facts - add ``ansible_ec2_instance_tags`` to return values (https://github.com/ansible-collections/amazon.aws/pull/2398).
24+
- ec2_transit_gateway - handle empty description while deleting transit gateway (https://github.com/ansible-collections/community.aws/pull/2086).
25+
26+
Deprecated Features
27+
-------------------
28+
29+
- autoscaling_group - the ``decrement_desired_capacity`` parameter has been deprecated and will be removed in release 14.0.0 of this collection. Management of instances attached an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
30+
- autoscaling_group - the ``replace_batch_size``, ``lc_check`` and ``lt_check`` parameters have been deprecated and will be removed in release 14.0.0 of this collection. Rolling replacement of instances in an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance_refresh`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
31+
- autoscaling_group - the functionality provided through the ``detach_instances`` parameter has been deprecated and will be removed in release 14.0.0 of this collection. Management of instances attached an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
32+
- autoscaling_group - the functionality provided through the ``replace_all_instances`` parameter has been deprecated and will be removed in release 14.0.0 of this collection. Rolling replacement of instances in an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance_refresh`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
33+
- autoscaling_group - the functionality provided through the ``replace_instances`` parameter has been deprecated and will be removed in release 14.0.0 of this collection. Management of instances attached an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
34+
35+
Bugfixes
36+
--------
37+
38+
- elbv2 - Fix load balancer listener comparison when DefaultActions contain any action other than forward (https://github.com/ansible-collections/amazon.aws/issues/2377).
39+
40+
New Modules
41+
-----------
42+
43+
- rds_instance_param_group_info - Describes the RDS parameter group.
44+
745
v9.0.0
846
======
947

changelogs/changelog.yaml

+58
Original file line numberDiff line numberDiff line change
@@ -3478,3 +3478,61 @@ releases:
34783478
name: ec2_vpc_egress_igw_info
34793479
namespace: ''
34803480
release_date: '2024-10-29'
3481+
9.1.0:
3482+
changes:
3483+
bugfixes:
3484+
- elbv2 - Fix load balancer listener comparison when DefaultActions contain
3485+
any action other than forward (https://github.com/ansible-collections/amazon.aws/issues/2377).
3486+
deprecated_features:
3487+
- autoscaling_group - the ``decrement_desired_capacity`` parameter has been
3488+
deprecated and will be removed in release 14.0.0 of this collection. Management
3489+
of instances attached an autoscaling group can be performed using the ``amazon.aws.autoscaling_instance``
3490+
module (https://github.com/ansible-collections/amazon.aws/pull/2396).
3491+
- autoscaling_group - the ``replace_batch_size``, ``lc_check`` and ``lt_check``
3492+
parameters have been deprecated and will be removed in release 14.0.0 of this
3493+
collection. Rolling replacement of instances in an autoscaling group can be
3494+
performed using the ``amazon.aws.autoscaling_instance_refresh`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
3495+
- autoscaling_group - the functionality provided through the ``detach_instances``
3496+
parameter has been deprecated and will be removed in release 14.0.0 of this
3497+
collection. Management of instances attached an autoscaling group can be performed
3498+
using the ``amazon.aws.autoscaling_instance`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
3499+
- autoscaling_group - the functionality provided through the ``replace_all_instances``
3500+
parameter has been deprecated and will be removed in release 14.0.0 of this
3501+
collection. Rolling replacement of instances in an autoscaling group can be
3502+
performed using the ``amazon.aws.autoscaling_instance_refresh`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
3503+
- autoscaling_group - the functionality provided through the ``replace_instances``
3504+
parameter has been deprecated and will be removed in release 14.0.0 of this
3505+
collection. Management of instances attached an autoscaling group can be performed
3506+
using the ``amazon.aws.autoscaling_instance`` module (https://github.com/ansible-collections/amazon.aws/pull/2396).
3507+
minor_changes:
3508+
- autoscaling_group - adds ``group_name`` as an alias for the ``name`` parameter
3509+
(https://github.com/ansible-collections/amazon.aws/pull/2396).
3510+
- autoscaling_group_info - adds ``group_name`` as an alias for the ``name``
3511+
parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
3512+
- autoscaling_instance_refresh - adds ``group_name`` as an alias for the ``name``
3513+
parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
3514+
- autoscaling_instance_refresh_info - adds ``group_name`` as an alias for the
3515+
``name`` parameter (https://github.com/ansible-collections/amazon.aws/pull/2396).
3516+
- ec2_instance - Fix the issue when trying to run instances using launch template
3517+
in an AWS environment where no default subnet is defined(https://github.com/ansible-collections/amazon.aws/issues/2321).
3518+
- ec2_metadata_facts - add ``ansible_ec2_instance_tags`` to return values (https://github.com/ansible-collections/amazon.aws/pull/2398).
3519+
- ec2_transit_gateway - handle empty description while deleting transit gateway
3520+
(https://github.com/ansible-collections/community.aws/pull/2086).
3521+
release_summary: This release brings several bugfixes, minor changes, a new
3522+
``rds_instance_param_group_info`` module, and some deprecations for the ``autoscaling_group``
3523+
module.
3524+
fragments:
3525+
- 20241004-ec2_instance-fix-issue-with-launch_template-when-there-no-default-subnet.yml
3526+
- 20241106-fqcn-cloudwatch-metric-alarm.yml
3527+
- 20241120-ec2_metadata_facts-tags.yml
3528+
- 2377-fix-load-balancer-listener-comparison.yml
3529+
- 2396-autoscaling_groups-deprecations.yml
3530+
- autoscaling_instance_enable_tests.yml
3531+
- fix_tgw_description.yml
3532+
- resease_summary.yml
3533+
- setup_sshkey.yml
3534+
modules:
3535+
- description: Describes the RDS parameter group.
3536+
name: rds_instance_param_group_info
3537+
namespace: ''
3538+
release_date: '2024-12-05'

changelogs/fragments/20241004-ec2_instance-fix-issue-with-launch_template-when-there-no-default-subnet.yml

-3
This file was deleted.

changelogs/fragments/20241106-fqcn-cloudwatch-metric-alarm.yml

-2
This file was deleted.

changelogs/fragments/20241120-ec2_metadata_facts-tags.yml

-2
This file was deleted.

changelogs/fragments/2377-fix-load-balancer-listener-comparison.yml

-2
This file was deleted.

changelogs/fragments/2396-autoscaling_groups-deprecations.yml

-28
This file was deleted.

changelogs/fragments/autoscaling_instance_enable_tests.yml

-2
This file was deleted.

changelogs/fragments/fix_tgw_description.yml

-2
This file was deleted.

changelogs/fragments/setup_sshkey.yml

-2
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: amazon
33
name: aws
4-
version: 9.0.0
4+
version: 9.1.0
55
readme: README.md
66
authors:
77
- Ansible (https://github.com/ansible)

plugins/module_utils/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
55

66
AMAZON_AWS_COLLECTION_NAME = "amazon.aws"
7-
AMAZON_AWS_COLLECTION_VERSION = "9.0.0"
7+
AMAZON_AWS_COLLECTION_VERSION = "9.1.0"
88

99

1010
_collection_info_context = {

0 commit comments

Comments
 (0)