Skip to content

Commit e0329ff

Browse files
Prep amazon.aws 8.2.1 release (#2284)
SUMMARY Prep amazon.aws 8.2.1 release. Release date is set to tomorrow. ISSUE TYPE Bugfix Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Mark Chappell Reviewed-by: Mandar Kulkarni <[email protected]>
1 parent 689024f commit e0329ff

File tree

5 files changed

+32
-7
lines changed

5 files changed

+32
-7
lines changed

CHANGELOG.rst

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

55
.. contents:: Topics
66

7+
v8.2.1
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is a bugfix release for the ``iam_role`` module that resolves the issue where IAM instance profiles were being created when ``create_instance_profile`` was set to ``false`` and addresses the ``EntityAlreadyExists`` exception when the instance profile already existed.
14+
15+
Bugfixes
16+
--------
17+
18+
- iam_role - fixes ``EntityAlreadyExists`` exception when ``create_instance_profile`` was set to ``false`` and the instance profile already existed (https://github.com/ansible-collections/amazon.aws/issues/2102).
19+
- iam_role - fixes issue where IAM instance profiles were created when ``create_instance_profile`` was set to ``false`` (https://github.com/ansible-collections/amazon.aws/issues/2281).
20+
721
v8.2.0
822
======
923

@@ -15,7 +29,7 @@ The amazon.aws 8.2.0 release includes a number of bugfixes, some new features an
1529
Minor Changes
1630
-------------
1731

18-
- cloudwatch_metric_alarm - add support for ``evaluate_low_sample_count_percentile`` parameter.
32+
- cloudwatch_metric_alarm - add support for ``evaluate_low_sample_count_percentile``` parameter.
1933
- cloudwatch_metric_alarm - support DatapointsToAlarm config (https://github.com/ansible-collections/amazon.aws/pull/2196).
2034
- ec2_ami - Add support for uefi-preferred boot mode (https://github.com/ansible-collections/amazon.aws/pull/2253).
2135
- ec2_instance - Add support for ``network_interfaces`` and ``network_interfaces_ids`` options replacing deprecated option ``network`` (https://github.com/ansible-collections/amazon.aws/pull/2123).

changelogs/changelog.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -3149,3 +3149,18 @@ releases:
31493149
- update_return_block_route53_health_check.yml
31503150
- use_t3a_micro_in_tests.yml
31513151
release_date: '2024-09-03'
3152+
8.2.1:
3153+
changes:
3154+
bugfixes:
3155+
- iam_role - fixes ``EntityAlreadyExists`` exception when ``create_instance_profile``
3156+
was set to ``false`` and the instance profile already existed (https://github.com/ansible-collections/amazon.aws/issues/2102).
3157+
- iam_role - fixes issue where IAM instance profiles were created when ``create_instance_profile``
3158+
was set to ``false`` (https://github.com/ansible-collections/amazon.aws/issues/2281).
3159+
release_summary: This is a bugfix release for the ``iam_role`` module that resolves
3160+
the issue where IAM instance profiles were being created when ``create_instance_profile``
3161+
was set to ``false`` and addresses the ``EntityAlreadyExists`` exception when
3162+
the instance profile already existed.
3163+
fragments:
3164+
- 2281-iam_role-support-not-creating.yml
3165+
- release_summary.yml
3166+
release_date: '2024-09-05'

changelogs/fragments/2281-iam_role-support-not-creating.yml

-4
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: 8.2.0
4+
version: 8.2.1
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 = "8.2.0"
7+
AMAZON_AWS_COLLECTION_VERSION = "8.2.1"
88

99

1010
_collection_info_context = {

0 commit comments

Comments
 (0)