Fix supplementary_addresses rendering error (#4403)
This commit is contained in:
parent
2fb27c8521
commit
0440e45d65
1 changed files with 2 additions and 2 deletions
|
@ -63,10 +63,10 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ hostvars[host]['ip'] | default(fallback_ips[host]) }}
|
{{ hostvars[host]['ip'] | default(fallback_ips[host]) }}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{%- if supplementary_addresses_in_ssl_keys is defined -%}
|
{% if supplementary_addresses_in_ssl_keys is defined -%}
|
||||||
{% for addr in supplementary_addresses_in_ssl_keys %}
|
{% for addr in supplementary_addresses_in_ssl_keys %}
|
||||||
{{ addr }}
|
{{ addr }}
|
||||||
{%- endfor %}
|
{% endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
tags: facts
|
tags: facts
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue