mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-10 12:50:28 -07:00
Update template to lowercase booleans
This commit is contained in:
parent
1728b20cd3
commit
842e61c43e
1 changed files with 4 additions and 4 deletions
|
@ -9,11 +9,11 @@ db-password={{ keycloak_quarkus_db_pass }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
# Observability
|
# Observability
|
||||||
metrics-enabled={{ keycloak_quarkus_metrics_enabled }}
|
metrics-enabled={{ keycloak_quarkus_metrics_enabled | lower }}
|
||||||
health-enabled={{ keycloak_quarkus_health_enabled }}
|
health-enabled={{ keycloak_quarkus_health_enabled | lower }}
|
||||||
|
|
||||||
# HTTP
|
# HTTP
|
||||||
http-enabled={{ keycloak_quarkus_http_enabled }}
|
http-enabled={{ keycloak_quarkus_http_enabled | lower }}
|
||||||
http-port={{ keycloak_quarkus_http_port }}
|
http-port={{ keycloak_quarkus_http_port }}
|
||||||
http-relative-path={{ keycloak_quarkus_http_relative_path }}
|
http-relative-path={{ keycloak_quarkus_http_relative_path }}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ proxy={{ keycloak_quarkus_proxy_mode }}
|
||||||
#spi-sticky-session-encoder-infinispan-should-attach-route=false
|
#spi-sticky-session-encoder-infinispan-should-attach-route=false
|
||||||
|
|
||||||
# Transaction
|
# Transaction
|
||||||
transaction-xa-enabled={{ keycloak_quarkus_transaction_xa_enabled }}
|
transaction-xa-enabled={{ keycloak_quarkus_transaction_xa_enabled | lower }}
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
#log-format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n
|
#log-format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n
|
||||||
|
|
Loading…
Add table
Reference in a new issue