I have a block that looks like this:
{% if grains['function'] == 'production' %}
{% set conf_src = "prod.yml.ninja" %}
{% elif grains['function'] == 'staging'] %}
{% set conf_src = "staging.yml.ninja" %}
{% elif grains['function'] == 'dev'] %}
{% set conf_src = "dev.yml.ninja" %}
{% endif %}
Is there any way to do something like
{%
if grains['function'] == 'production'
set conf_src = "prod.yml.ninja"
elif grains['function'] == 'staging'
set conf_src = "staging.yml.ninja"
elif grains['function'] == 'dev'
set conf_src = "dev.yml.ninja"
endif
%}
So I can just open the block once?
You can define a look-up dictionary, and only include non-trivial cases:
html = '''
{% set lookup = dict(production='prod') %}
{% set conf_src = lookup.get(grains['function'], grains['function'])
+ '.yml.ninja' %}
'''
Here, since dev and staging are not modified, you may use dict.get fall-back argument.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With