I have jinja template file with variable names like x.y.z (like java package names). Then I'm using Python envtpl to generate actual config file from jinja template file using envtpl.process_file. But it errors out saying 'x' is undefined. I know in jinja dot means something else so how do I escape it so that envtpl understands that 'x.y.z' is a variable name not just 'x'.
template file for example:
foo = "{{ x.y.z | default("abc") }}"
bar = "{{ a.b.c | default("123") }}"