This commit is contained in:
Taka 2025-10-17 12:02:55 +01:00 committed by GitHub
commit e7a6604102
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -188,6 +188,7 @@ Role Defaults
|`keycloak_quarkus_transaction_xa_enabled`| Whether to use XA transactions | `True` |
|`keycloak_quarkus_spi_sticky_session_encoder_infinispan_should_attach_route`| If the route should be attached to cookies to reflect the node that owns a particular session. If false, route is not attached to cookies and we rely on the session affinity capabilities from reverse proxy | `True` |
|`keycloak_quarkus_show_deprecation_warnings`| Whether deprecation warnings should be shown | `True` |
|`keycloak_quarkus_features`| List of additional features to enable ||
#### Vault configuration

View file

@ -95,6 +95,10 @@ vault-type={{ keycloak_quarkus_ks_vault_type }}
vault-pass={{ keycloak_quarkus_ks_vault_pass }}
{% endif %}
# Features
{% if keycloak_quarkus_features is defined and keycloak_quarkus_features %}
features={{ keycloak_quarkus_features | join(', ') }}
{% endif %}
# Providers
{% for provider in keycloak_quarkus_providers %}