Ansible permite que um dos formulários a seguir defina a variável condicionalmente:
test:
var1: "{% if my_group_var %}value{% else %}other_value{% endif %}"
var2: "{{'value' if (my_group_var) else 'other_value'}}"
Combinando a sintaxe acima com a pesquisa vars, podemos carregar vars complexos (lista, neste caso):
test_value_when_my_group_var_is_true:
var1: value
var2: value
test_value_when_my_group_var_is_false:
var1: other_value
var2: other_value
test: "{{ lookup('vars','test_value_when_my_group_var_is_true') if (my_group_var) else lookup('vars','test_value_when_my_group_var_is_false')}}"
Existe outra maneira de fazer o carregamento de árvore condicional com pesquisa de vars. Dessa forma, é útil quando você precisa implementar lógica de caso (isto é, a variável de condição tem mais de dois valores possíveis):
test_value_when_my_group_var_is_foo:
var1: value
var2: value
test_value_when_my_group_var_is_bar:
var1: other_value
var2: other_value
test_value_when_my_group_var_is_baz:
var1: yet_another_value
var2: yet_another_value
test: "{{ lookup('vars','test_value_when_my_group_var_is_' + my_group_var) }}"