Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

default value for dictionary in jinja2 (ansible)

Tags:

ansible

jinja2

jinja2 has filter '|default()' to works with undefined variables. But it does not work with dictionary values.

if D may have or not have key foo (D[foo]), than:

{{ D[foo]|default ('no foo') }}

will prints 'no foo' if D is undefined, but will cause error ('dict object' has no attribute 'foo') if D is defined, but D[foo] is undefined.

Is any way to make default for dictionary item?

like image 753
George Shuklin Avatar asked Mar 05 '15 18:03

George Shuklin


1 Answers

This appears to be working properly for me using Ansible 1.7.2. Here's a test playbook I just wrote:

---
- hosts: localhost
  vars:
    D:
     1 : "one"
     2 : "two"
  tasks:
      - debug: var=D

      - debug: msg="D[1] is {{ D[1]|default ('undefined') }}"

      - debug: msg="D[3] is {{ D[3]|default ('undefined') }}"

And here is the output from running it:

TASK: [debug var=D] ***********************************************************
ok: [localhost] => {
    "D": {
        "1": "one",
        "2": "two"
    }
}

TASK: [debug msg="D[1] is one"] ***********************************************
ok: [localhost] => {
    "msg": "D[1] is one"
}

TASK: [debug msg="D[3] is undefined"] *****************************************
ok: [localhost] => {
    "msg": "D[3] is undefined"
}
like image 135
Bruce P Avatar answered Oct 12 '22 10:10

Bruce P