Forked from ryan-lane/gist:2c4bed05542b1d088bc4
Last active
September 9, 2015 19:44
-
-
Save UtahDave/f26500ee036e80e2f103 to your computer and use it in GitHub Desktop.
Environment example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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