Skip to content

Instantly share code, notes, and snippets.

@konstruktoid
Last active June 27, 2022 10:07
Show Gist options
  • Save konstruktoid/d3f842187ef50bb068e94fbc076c315a to your computer and use it in GitHub Desktop.
Save konstruktoid/d3f842187ef50bb068e94fbc076c315a to your computer and use it in GitHub Desktop.
---
- 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