Skip to content

Commit

Permalink
Prepare 1.2.1 release (ansible-collections#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
jillr authored Oct 8, 2020
1 parent 05dc527 commit ed41000
Show file tree
Hide file tree
Showing 13 changed files with 665 additions and 41 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ community.aws Release Notes
.. contents:: Topics


v1.2.1
======

Minor Changes
-------------

- aws_ssm connection plugin - Change the (internal) variable name from timeout to plugin_timeout to avoid conflicts with ansible/ansible default timeout (#69284,
- aws_ssm connection plugin - add STS token options to aws_ssm connection plugin.
- ec2_scaling_policy - Add support for step_adjustments
- ec2_scaling_policy - Migrate from boto to boto3
- rds_subnet_group module - Add Boto3 support and remove Boto support.

Bugfixes
--------

- aws_ssm connection plugin - namespace file uploads to S3 into unique folders per host, to prevent name collisions. Also deletes files from S3 to ensure temp files are not left behind. (https://github.com/ansible-collections/community.aws/issues/221, https://github.com/ansible-collections/community.aws/issues/222)
- rds_instance - fixed tag type conversion issue for creating read replicas.

v1.2.0
======

Expand Down
24 changes: 24 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -730,3 +730,27 @@ releases:
- 22-ec2_instance-mod-sgs.yml
- iam_no_log.yml
release_date: '2020-08-28'
1.2.1:
changes:
bugfixes:
- aws_ssm connection plugin - namespace file uploads to S3 into unique folders
per host, to prevent name collisions. Also deletes files from S3 to ensure
temp files are not left behind. (https://github.com/ansible-collections/community.aws/issues/221,
https://github.com/ansible-collections/community.aws/issues/222)
- rds_instance - fixed tag type conversion issue for creating read replicas.
minor_changes:
- aws_ssm connection plugin - Change the (internal) variable name from timeout
to plugin_timeout to avoid conflicts with ansible/ansible default timeout
(#69284,
- aws_ssm connection plugin - add STS token options to aws_ssm connection plugin.
- ec2_scaling_policy - Add support for step_adjustments
- ec2_scaling_policy - Migrate from boto to boto3
- rds_subnet_group module - Add Boto3 support and remove Boto support.
fragments:
- 197-ec2_scaling_policy-boto3.yml
- 221_222_ssm_bucket_operations.yaml
- 224-port-rds_subnet_group-boto3.yaml
- 229-fix-type-conversion-for-creating-read-replicas.yaml
- 234-fix_ssm_inventory_plugin_timeout_var.yaml
- 25-add-sts-token-to-aws-ssm-conn-plugin.yaml
release_date: '2020-10-07'
3 changes: 0 additions & 3 deletions changelogs/fragments/197-ec2_scaling_policy-boto3.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/221_222_ssm_bucket_operations.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/224-port-rds_subnet_group-boto3.yaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

59 changes: 58 additions & 1 deletion docs/community.aws.aws_ssm_connection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,25 @@ Parameters
<th>Configuration</th>
<th width="100%">Comments</th>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>access_key_id</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">-</span>
</div>
<div style="font-style: italic; font-size: small; color: darkgreen">added in 1.3.0</div>
</td>
<td>
</td>
<td>
<div>var: ansible_aws_ssm_access_key_id</div>
</td>
<td>
<div>The STS access key to use when connecting via session-manager.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
Expand Down Expand Up @@ -137,7 +156,45 @@ Parameters
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>timeout</b>
<b>secret_access_key</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">-</span>
</div>
<div style="font-style: italic; font-size: small; color: darkgreen">added in 1.3.0</div>
</td>
<td>
</td>
<td>
<div>var: ansible_aws_ssm_secret_access_key</div>
</td>
<td>
<div>The STS secret key to use when connecting via session-manager.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>session_token</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">-</span>
</div>
<div style="font-style: italic; font-size: small; color: darkgreen">added in 1.3.0</div>
</td>
<td>
</td>
<td>
<div>var: ansible_aws_ssm_session_token</div>
</td>
<td>
<div>The STS session token to use when connecting via session-manager.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>ssm_timeout</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">integer</span>
Expand Down
Loading

0 comments on commit ed41000

Please sign in to comment.