Fix compatibility with Jinja2 >= 2.10

The indentfirst parameter of the indent helper was renamed
to first at Jinja2 2.10 - update template to follow this
change.

Change-Id: I4299a72646a602720689b4f3c3075de8c21b0811
This commit is contained in:
James Page 2022-05-23 14:23:13 +01:00
parent 91e4aea451
commit c749054e03
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ admin_user: {{ admin_user }}
admin_password: {{ admin_password }}
{% if ssl_ca -%}
ssl_ca: |
{{ ssl_ca | indent( width=2, indentfirst=True) }}
{{ ssl_ca | indent( width=2, first=True) }}
{% endif -%}
{% if api_version == '3' -%}