Add better error trapping for booleans

This commit is contained in:
Deven Phillips 2024-04-18 13:15:46 -04:00
parent 47e6644fdd
commit b8cba487ac

View file

@ -10,10 +10,10 @@ db-password={{ keycloak_quarkus_db_pass }}
{% endif %} {% endif %}
{% endif %} {% endif %}
{% if keycloak_quarkus_hostname_strict_https and keycloak_quarkus_hostname_strict_https is sameas true -%} {% if keycloak_quarkus_hostname_strict_https is defined and keycloak_quarkus_hostname_strict_https is sameas true -%}
hostname-strict-https=true hostname-strict-https=true
{% endif -%} {% endif -%}
{% if keycloak_quarkus_hostname_strict_https and keycloak_quarkus_hostname_strict_https is sameas false -%} {% if keycloak_quarkus_hostname_strict_https is defined and keycloak_quarkus_hostname_strict_https is sameas false -%}
hostname-strict-https=false hostname-strict-https=false
{% endif -%} {% endif -%}