Last active
June 27, 2022 10:07
-
-
Save konstruktoid/d3f842187ef50bb068e94fbc076c315a to your computer and use it in GitHub Desktop.
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
--- | |
- hosts: all | |
any_errors_fatal: true | |
gather_facts: false | |
vars: | |
a: | |
b: 2 | |
c: 3 | |
tasks: | |
- name: inline if | |
debug: | |
msg: "item: {% if a %}{{ a }}{% else %}{{ c }}{% endif %}" | |
- name: variant | |
debug: | |
msg: "item {{ a if a else c }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment