Skip to content

Instantly share code, notes, and snippets.

@UtahDave
Forked from ryan-lane/gist:2c4bed05542b1d088bc4
Last active September 9, 2015 19:44
Show Gist options
  • Save UtahDave/f26500ee036e80e2f103 to your computer and use it in GitHub Desktop.
Save UtahDave/f26500ee036e80e2f103 to your computer and use it in GitHub Desktop.
Environment example
{% if pillar.environment == 'production' %}
Ensure instance1 is configured:
file.managed:
- name /var/local/instance1/context.xml
- source: salt://instance.xml.tmpl
- template: jinja
- context:
somesetting: testme
{% else %}
Ensure instance1 is configured:
file.managed:
- name /var/local/instance1/context.xml
- source: salt://instance.xml.tmpl
- template: jinja
- context:
somesetting: helloworld
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment