From 29345f90e44db20b40920807f392ef69d7144aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Abecasis?= Date: Fri, 2 Feb 2024 13:19:57 +0000 Subject: [PATCH] fix: allow use of new Fn::ForEach intrinsic function in templates --- cfn_review_bot/schema/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfn_review_bot/schema/template.py b/cfn_review_bot/schema/template.py index 6121f35..2e0cc24 100644 --- a/cfn_review_bot/schema/template.py +++ b/cfn_review_bot/schema/template.py @@ -16,6 +16,6 @@ schema.Optional('Mappings'): {str: dict}, schema.Optional('Conditions'): {str: util.Any}, schema.Optional('Transform'): util.Any, - schema.Optional('Resources'): {str: dict}, + schema.Optional('Resources'): {str: util.Any}, schema.Optional('Outputs'): {str: dict}, }, name='CloudFormation Template')