Skip to content

Commit

Permalink
Passthrough metadata into SAM translator (aws-cloudformation#3030)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Jan 22, 2024
1 parent e7466d3 commit ff1d1d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cfnlint/template/transforms/_sam.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ def transform_template(self):

self._template = convert_dict(
sam_translator.translate(
sam_template=self._template, parameter_values=self._parameters
sam_template=self._template,
parameter_values=self._parameters,
passthrough_metadata=True,
)
)

Expand Down

0 comments on commit ff1d1d5

Please sign in to comment.