summaryrefslogtreecommitdiff
path: root/changelogs/fragments
diff options
context:
space:
mode:
authorMark Chappell <mchappel@redhat.com>2019-08-24 01:56:45 +0200
committerJill R <4121322+jillr@users.noreply.github.com>2019-08-23 16:56:45 -0700
commit5434bf74c646d0f61bf11b6a9c207d34547d0191 (patch)
tree546f8c36552cdacf0e5b402fdfd15da81d4d3fe9 /changelogs/fragments
parent4551965af168f9762d33409e4c06c1b88ce59999 (diff)
downloadansible-5434bf74c646d0f61bf11b6a9c207d34547d0191.tar.gz
Fix issues with aws_kms when working cross-account and with IDs (#60805)
* aws_kms: (integration tests) Test updating a key by ID rather than just my alias * aws_kms: (integration tests) Test deletion of non-existent and keys that are already marked for deletion * aws_kms: Ensure we can perform actions on a specific key_id rather than just aliases In the process switch over to using get_key_details rather than listing all keys. * aws_kms: When updating keys use the ARN rather than just the ID. This is important when working with cross-account trusts.
Diffstat (limited to 'changelogs/fragments')
-rw-r--r--changelogs/fragments/60805-aws_kms-ID-and-ARN-fixes.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/changelogs/fragments/60805-aws_kms-ID-and-ARN-fixes.yml b/changelogs/fragments/60805-aws_kms-ID-and-ARN-fixes.yml
new file mode 100644
index 0000000000..08674ed275
--- /dev/null
+++ b/changelogs/fragments/60805-aws_kms-ID-and-ARN-fixes.yml
@@ -0,0 +1,3 @@
+bugfixes:
+- aws_kms - fix exception when only Key ID is passed
+- aws_kms - Use ARN rather than ID so that cross-account changes function