From 996b271a49404557b3ed367f31782c66b3530097 Mon Sep 17 00:00:00 2001 From: Benjamin Morris <93620006+bmorrissirromb@users.noreply.github.com> Date: Tue, 27 Aug 2024 20:09:53 -0700 Subject: [PATCH 1/3] apply sub function to partition --- rdk/template/configRule.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rdk/template/configRule.yaml b/rdk/template/configRule.yaml index 6668852..342d086 100644 --- a/rdk/template/configRule.yaml +++ b/rdk/template/configRule.yaml @@ -278,7 +278,8 @@ Resources: - logs:PutLogEvents - logs:DescribeLogStreams Effect: Allow - Resource: "arn:${AWS::Partition}:logs:*:*:log-group:/aws/lambda/RDK-Rule-Function*" # Consider scoping to the current account only, if that doesn't break cross-account + Resource: + Fn::Sub: "arn:${AWS::Partition}:logs:*:*:log-group:/aws/lambda/RDK-Rule-Function*" # Consider scoping to the current account only, if that doesn't break cross-account - Sid: "PutConfigEvaluations" Action: - config:PutEvaluations From 6086bc80484b562039aac0ded1492dfec95d157b Mon Sep 17 00:00:00 2001 From: Benjamin Morris Date: Tue, 27 Aug 2024 20:12:13 -0700 Subject: [PATCH 2/3] version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 07b4d56..95221fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ # or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. [tool.poetry] name = "rdk" -version = "0.17.13" +version = "0.17.14" description = "Rule Development Kit CLI for AWS Config" authors = [ "AWS RDK Maintainers ", From 76c0defdc3677417ac08de8c7f18c214b41fddd2 Mon Sep 17 00:00:00 2001 From: Benjamin Morris Date: Tue, 27 Aug 2024 20:13:57 -0700 Subject: [PATCH 3/3] version bump --- rdk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdk/__init__.py b/rdk/__init__.py index d26265e..422e4dc 100644 --- a/rdk/__init__.py +++ b/rdk/__init__.py @@ -6,4 +6,4 @@ # # or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -MY_VERSION = "0.17.13" +MY_VERSION = "0.17.14"