cloudtools / stacker

An AWS CloudFormation Stack orchestrator/manager.
http://stacker.readthedocs.io/en/stable/
BSD 2-Clause "Simplified" License
711 stars 167 forks source link

Allow lookup in stack `enabled` field #774

Open 555klaw opened 2 years ago

555klaw commented 2 years ago

In my configuration, I want to dynamically lookup whether a stack is enabled, like...

  my-stack:
    enabled: ${custom something}
    template_path: stacker/templates/my-template.yml.j2

where my lookup (in this case custom) resolves to true or false, thus toggling stack creation.