We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
template_engine
I've got the following error when running consul-template with a pillar similar to the example:
Data failed to compile: ---------- Rendering SLS 'base:consul-template.config' failed: Jinja variable 'dict object' has no attribute 'template_engine'
Adding template_engine: null to the tmpl section results in errors about the resulting None value.
template_engine: null
tmpl
template_engine: jinja causes jinja syntax errors when trying to read the go template used by consul-template.
template_engine: jinja
I was able to bypass the issue by removing line 15 in consul-template/config.sls: - template: {{ tmpl.template_engine }}
consul-template/config.sls
- template: {{ tmpl.template_engine }}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've got the following error when running consul-template with a pillar similar to the example:
Adding
template_engine: null
to thetmpl
section results in errors about the resulting None value.template_engine: jinja
causes jinja syntax errors when trying to read the go template used by consul-template.I was able to bypass the issue by removing line 15 in
consul-template/config.sls
:- template: {{ tmpl.template_engine }}
The text was updated successfully, but these errors were encountered: