mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 02:10:29 -07:00
Add better error trapping for booleans
This commit is contained in:
parent
47e6644fdd
commit
b8cba487ac
1 changed files with 2 additions and 2 deletions
|
@ -10,10 +10,10 @@ db-password={{ keycloak_quarkus_db_pass }}
|
|||
{% 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
|
||||
{% 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
|
||||
{% endif -%}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue