Created
May 13, 2018 16:16
-
-
Save ryanlelek/b0628ff40bd4a1088ce0bc22ea666fc0 to your computer and use it in GitHub Desktop.
AnsibleTutorials Template Patch (Temp)
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
# Regular Variable | |
{{ regular_variable }} | |
# If / Else | |
{% if use_hyperdrive == false %} | |
Hyperdrive is not enabled | |
{% else %} | |
Hyperdrive is enabled! | |
{% endif %} | |
# Loop | |
{% for item in mylist %} | |
I need to buy {{ item }} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment