From 6045f52d953ec68e04607c5ee896fc8960ab7eb5 Mon Sep 17 00:00:00 2001 From: ingalls Date: Mon, 12 Aug 2024 20:32:48 -0700 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 4 ++++ cloudformation/lib/api.js | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 952471296..77064a3ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ ### Pending Release +### v3.0.1 - 2024-08-12 + +- :bug: For an unknown reason CloudFormation needs the list permission now, reasonable but not sure what changed + ### v3.0.0 - 2024-08-12 - :rocket: **Breaking** Create Mission Syncs with POST request, simplifying the internal code diff --git a/cloudformation/lib/api.js b/cloudformation/lib/api.js index 0512cfe9f..96998ed3d 100644 --- a/cloudformation/lib/api.js +++ b/cloudformation/lib/api.js @@ -286,8 +286,9 @@ export default { 'logs:CreateLogGroup', 'logs:DeleteLogGroup', 'logs:PutRetentionPolicy', - 'logs:describe*', - 'logs:get*' + 'logs:List*', + 'logs:Describe*', + 'logs:Get*' ], Resource: [ cf.join(['arn:', cf.partition, ':logs:', cf.region, ':', cf.accountId, ':log-group:/aws/lambda/', cf.stackName, '-layer-*'])