We are using a few self-created attributes for our own theme which we defined in standalone.xml like:
<system-properties>
<property name="myVariable" value="thisValue"/>
</system-properties>
Now while testing v17 on Quarkus I am looking for a way to put those variables into the conf/keycloak.conf file but it seems there are only “allowed” variables possible. I found workarounds by either starting the server via “bin/kc.sh start -DmyVariable=thisValue” or by doing “EXPORT myVariable=thisValue” but I would definitely prefer to have the complete config together in the conf/keycloak.conf file.
Is there any syntax (I do not know or is not documented) I can use to create my own variables in the config file?