13 lines
279 B
YAML
13 lines
279 B
YAML
version: 1.1
|
|
bool:
|
|
type: boolean
|
|
int1:
|
|
type: number
|
|
default:
|
|
type: jinja
|
|
jinja: '{%set bool1 = bool %}{% if bool1 %}1{% else %}2{% endif %}'
|
|
int2:
|
|
type: number
|
|
default:
|
|
type: jinja
|
|
jinja: '{%set bool1 = bool %}{% if not bool1 %}3{% else %}4{% endif %}'
|