Skip to content

Commit d30c7c6

Browse files
authored
Prep 2.3.0 release - run add_docs, generate changelog (#841)
Prep 2.3.0 release SUMMARY Run add_docs, generate changelog ISSUE TYPE Feature Pull Request COMPONENT NAME amazon.aws 2.3 Reviewed-by: Alina Buzachis <None> Reviewed-by: Jill R <None>
1 parent 5ba51d5 commit d30c7c6

15 files changed

+73
-35
lines changed

CHANGELOG.rst

+16
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ community.aws Release Notes
55
.. contents:: Topics
66

77

8+
v2.3.0
9+
======
10+
11+
Bugfixes
12+
--------
13+
14+
- aws_account_attribute lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
15+
- aws_ec2 inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
16+
- aws_rds inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
17+
- aws_resource_actions callback plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
18+
- aws_secret lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
19+
- aws_service_ip_ranges lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
20+
- aws_ssm lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
21+
- ec2_instance - ec2_instance module broken in Python 3.8 - dict keys modified during iteration (https://github.com/ansible-collections/amazon.aws/issues/709).
22+
- module.utils.s3 - Update validate_bucket_name minimum length to 3 (https://github.com/ansible-collections/amazon.aws/pull/802).
23+
824
v2.2.0
925
======
1026

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ AWS related modules and plugins supported by the Ansible community are in the [c
88

99
This collection has been tested against following Ansible versions: **>=2.9.10**.
1010

11-
For collections that support Ansible 2.9, please ensure you update your `network_os` to use the
12-
fully qualified collection name (for example, `cisco.ios.ios`).
1311
Plugins and modules within a collection may be tested with only specific Ansible versions.
1412
A collection may contain metadata that identifies these versions.
1513
PEP440 is the schema used to describe the versions of Ansible.
@@ -60,7 +58,7 @@ Name | Description
6058
[amazon.aws.ec2_key](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_key_module.rst)|create or delete an ec2 key pair
6159
[amazon.aws.ec2_metadata_facts](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_metadata_facts_module.rst)|gathers facts (instance metadata) about remote hosts within EC2
6260
[amazon.aws.ec2_snapshot](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_snapshot_module.rst)|Creates a snapshot from an existing volume
63-
[amazon.aws.ec2_snapshot_info](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_snapshot_info_module.rst)|Gather information about ec2 volume snapshots in AWS
61+
[amazon.aws.ec2_snapshot_info](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_snapshot_info_module.rst)|Gathers information about EC2 volume snapshots in AWS
6462
[amazon.aws.ec2_spot_instance](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_spot_instance_module.rst)|request, stop, reboot or cancel spot instance
6563
[amazon.aws.ec2_spot_instance_info](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_spot_instance_info_module.rst)|Gather information about ec2 spot instance requests
6664
[amazon.aws.ec2_tag](https://github.com/ansible-collections/amazon.aws/blob/stable-2/docs/amazon.aws.ec2_tag_module.rst)|create and remove tags on ec2 resources

changelogs/changelog.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -622,3 +622,24 @@ releases:
622622
- 691-ec2_vpc_igw-fix-null-igw-error.yml
623623
- 695-ec2_vpc_igw-fix-nonetype-with-paginator.yml
624624
release_date: '2022-03-22'
625+
2.3.0:
626+
changes:
627+
bugfixes:
628+
- aws_account_attribute lookup plugin - fix linting errors in documentation
629+
data (https://github.com/ansible-collections/amazon.aws/pull/701).
630+
- aws_ec2 inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
631+
- aws_rds inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
632+
- aws_resource_actions callback plugin - fix linting errors in documentation
633+
data (https://github.com/ansible-collections/amazon.aws/pull/701).
634+
- aws_secret lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
635+
- aws_service_ip_ranges lookup plugin - fix linting errors in documentation
636+
data (https://github.com/ansible-collections/amazon.aws/pull/701).
637+
- aws_ssm lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701).
638+
- ec2_instance - ec2_instance module broken in Python 3.8 - dict keys modified
639+
during iteration (https://github.com/ansible-collections/amazon.aws/issues/709).
640+
- module.utils.s3 - Update validate_bucket_name minimum length to 3 (https://github.com/ansible-collections/amazon.aws/pull/802).
641+
fragments:
642+
- 709-ec_2_instance-python-3-8-compatibility.yml
643+
- 802-update-s3-module_util-validate_bucket_name-to-accept-3-character-bucket-name.yml
644+
- validate-plugins.yml
645+
release_date: '2022-05-25'

changelogs/fragments/709-ec_2_instance-python-3-8-compatibility.yml

-3
This file was deleted.

changelogs/fragments/802-update-s3-module_util-validate_bucket_name-to-accept-3-character-bucket-name.yml

-2
This file was deleted.

changelogs/fragments/validate-plugins.yml

-9
This file was deleted.

docs/amazon.aws.aws_account_attribute_lookup.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Requirements
2525
The below requirements are needed on the local Ansible controller node that executes this lookup.
2626

2727
- python >= 3.6
28-
- boto3
28+
- boto3 >= 1.15.0
2929
- botocore >= 1.18.0
3030

3131

@@ -230,7 +230,7 @@ Status
230230
Authors
231231
~~~~~~~
232232

233-
- Sloane Hertel <[email protected]>
233+
- Sloane Hertel (@s-hertel) <[email protected]>
234234

235235

236236
.. hint::

docs/amazon.aws.aws_ec2_inventory.rst

+7-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ Requirements
2525
------------
2626
The below requirements are needed on the local Ansible controller node that executes this inventory.
2727

28-
- boto3
29-
- botocore
28+
- python >= 3.6
29+
- boto3 >= 1.15.0
30+
- botocore >= 1.18.0
3031

3132

3233
Parameters
@@ -269,6 +270,7 @@ Parameters
269270
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
270271
<div style="font-size: small">
271272
<span style="color: purple">list</span>
273+
/ <span style="color: purple">elements=dictionary</span>
272274
</div>
273275
</td>
274276
<td>
@@ -327,6 +329,7 @@ Parameters
327329
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
328330
<div style="font-size: small">
329331
<span style="color: purple">list</span>
332+
/ <span style="color: purple">elements=dictionary</span>
330333
</div>
331334
</td>
332335
<td>
@@ -386,6 +389,7 @@ Parameters
386389
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
387390
<div style="font-size: small">
388391
<span style="color: purple">list</span>
392+
/ <span style="color: purple">elements=dictionary</span>
389393
</div>
390394
</td>
391395
<td>
@@ -590,6 +594,7 @@ Parameters
590594
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
591595
<div style="font-size: small">
592596
<span style="color: purple">list</span>
597+
/ <span style="color: purple">elements=string</span>
593598
</div>
594599
</td>
595600
<td>

docs/amazon.aws.aws_rds_inventory.rst

+10-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ Requirements
2525
------------
2626
The below requirements are needed on the local Ansible controller node that executes this inventory.
2727

28-
- boto3
29-
- botocore
28+
- python >= 3.6
29+
- boto3 >= 1.15.0
30+
- botocore >= 1.18.0
3031

3132

3233
Parameters
@@ -523,6 +524,7 @@ Parameters
523524
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
524525
<div style="font-size: small">
525526
<span style="color: purple">list</span>
527+
/ <span style="color: purple">elements=string</span>
526528
</div>
527529
</td>
528530
<td>
@@ -607,6 +609,12 @@ Parameters
607609
<br/>
608610

609611

612+
Notes
613+
-----
614+
615+
.. note::
616+
- Ansible versions prior to 2.10 should use the fully qualified plugin name 'amazon.aws.aws_rds'.
617+
610618

611619

612620
Examples

docs/amazon.aws.aws_secret_lookup.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Requirements
2727
The below requirements are needed on the local Ansible controller node that executes this lookup.
2828

2929
- python >= 3.6
30-
- boto3
30+
- boto3 >= 1.15.0
3131
- botocore >= 1.18.0
3232

3333

@@ -415,7 +415,7 @@ Status
415415
Authors
416416
~~~~~~~
417417

418-
- Aaron Smith <[email protected]>
418+
- Aaron Smith (!UNKNOWN) <[email protected]>
419419

420420

421421
.. hint::

docs/amazon.aws.aws_service_ip_ranges_lookup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Status
155155
Authors
156156
~~~~~~~
157157

158-
- James Turner <[email protected]>
158+
- James Turner (!UNKNOWN) <[email protected]>
159159

160160

161161
.. hint::

docs/amazon.aws.aws_ssm_lookup.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Requirements
2828
The below requirements are needed on the local Ansible controller node that executes this lookup.
2929

3030
- python >= 3.6
31-
- boto3
31+
- boto3 >= 1.15.0
3232
- botocore >= 1.18.0
3333

3434

@@ -242,9 +242,9 @@ Status
242242
Authors
243243
~~~~~~~
244244

245-
- Bill Wang <ozbillwang(at)gmail.com>
246-
- Marat Bakeev <hawara(at)gmail.com>
247-
- Michael De La Rue <[email protected]>
245+
- Bill Wang (!UNKNOWN) <ozbillwang(at)gmail.com>
246+
- Marat Bakeev (!UNKNOWN) <hawara(at)gmail.com>
247+
- Michael De La Rue (!UNKNOWN) <[email protected]>
248248

249249

250250
.. hint::

docs/amazon.aws.ec2_instance_module.rst

+4
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ Parameters
730730
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
731731
<div style="font-size: small">
732732
<span style="color: purple">list</span>
733+
/ <span style="color: purple">elements=string</span>
733734
</div>
734735
</td>
735736
<td>
@@ -746,6 +747,7 @@ Parameters
746747
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
747748
<div style="font-size: small">
748749
<span style="color: purple">list</span>
750+
/ <span style="color: purple">elements=string</span>
749751
</div>
750752
</td>
751753
<td>
@@ -762,6 +764,7 @@ Parameters
762764
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
763765
<div style="font-size: small">
764766
<span style="color: purple">list</span>
767+
/ <span style="color: purple">elements=string</span>
765768
</div>
766769
</td>
767770
<td>
@@ -794,6 +797,7 @@ Parameters
794797
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
795798
<div style="font-size: small">
796799
<span style="color: purple">list</span>
800+
/ <span style="color: purple">elements=string</span>
797801
</div>
798802
</td>
799803
<td>

docs/amazon.aws.ec2_snapshot_info_module.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
amazon.aws.ec2_snapshot_info
66
****************************
77

8-
**Gather information about ec2 volume snapshots in AWS**
8+
**Gathers information about EC2 volume snapshots in AWS**
99

1010

1111
Version added: 1.0.0
@@ -17,7 +17,7 @@ Version added: 1.0.0
1717

1818
Synopsis
1919
--------
20-
- Gather information about ec2 volume snapshots in AWS.
20+
- Gathers information about EC2 volume snapshots in AWS.
2121
- This module was called ``ec2_snapshot_facts`` before Ansible 2.9. The usage did not change.
2222

2323

@@ -435,7 +435,7 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late
435435
</td>
436436
<td>always</td>
437437
<td>
438-
<div>The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the data encryption key that was used to encrypt the original volume or snapshot copy.</div>
438+
<div>The data encryption key identifier for the snapshot. This value is a unique identifier that corresponds to the data encryption key that was used to encrypt the original volume or snapshot copy.</div>
439439
<br/>
440440
<div style="font-size: smaller"><b>Sample:</b></div>
441441
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">arn:aws:kms:ap-southeast-2:012345678900:key/74c9742a-a1b2-45cb-b3fe-abcdef123456</div>
@@ -489,7 +489,7 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late
489489
</td>
490490
<td>always</td>
491491
<td>
492-
<div>The full ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the parent volume.</div>
492+
<div>The full ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the parent volume.</div>
493493
<br/>
494494
<div style="font-size: smaller"><b>Sample:</b></div>
495495
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">74c9742a-a1b2-45cb-b3fe-abcdef123456</div>

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: amazon
22
name: aws
3-
version: 2.2.0
3+
version: 2.3.0
44
readme: README.md
55
authors:
66
- Ansible (https://github.com/ansible)

0 commit comments

Comments
 (0)