Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cfn-include): allow dynamic mappings to be used in Fn::FindInMap #13428

Merged
merged 2 commits into from
Mar 6, 2021

Commits on Mar 5, 2021

  1. fix(cfn-include): allow dynamic mappings to be used in Fn::FindInMap

    The template parsing logic in cloudformation-include always searched for the Mapping
    in the templatebased on the first argument passed to Fn::FindInMap.
    However, that doesn't work if that first argument is a dynamic expression,
    like `{ Ref: Param }`.
    
    Check for that case explicitly, and don't search for the Mapping
    if the first argument to Fn::FindInMap is a dynamic expression.
    skinny85 committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    0457ce8 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2021

  1. Configuration menu
    Copy the full SHA
    4024ea7 View commit details
    Browse the repository at this point in the history