You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
every sensitive config value is resolvable as follows:
if <configkey>.alias is not-null, interpret its value as secret alias and resolve the sensitive configuration value from the Vault
if <configkey>.alias is null, resolve the value directly from a configuration <configkey>
both <configkey>.alias and <configkey> must be non-required to allow this mechanism. If a config value is indeed mandatory, this must be handled in client code, e.g. in the initialize() method.
The text was updated successfully, but these errors were encountered:
Feature
Implement sensitive configuration values:
Solution proposal
every sensitive config value is resolvable as follows:
<configkey>.alias
is not-null, interpret its value as secret alias and resolve the sensitive configuration value from theVault
<configkey>.alias
is null, resolve the value directly from a configuration<configkey>
<configkey>.alias
and<configkey>
must be non-required to allow this mechanism. If a config value is indeed mandatory, this must be handled in client code, e.g. in theinitialize()
method.The text was updated successfully, but these errors were encountered: