If Content Agent 1.12.0 has been used in order to utilise the client credential support (if using multiple OC's/for Wire application), this config now has been moved up in scope.
/**
* 1.12.0 config where clientId, clientSecret and tokenProvider
* is part of the opencontent scope
*/
{
"${DBKS:CA_PROVIDER}": {
"opencontent": {
"host": "${DBKS:CA_OC_PROVIDER_HOST}",
"clientId": "old-position-for-client-id",
"clientSecret": "old-position-for-client-secret",
"tokenProvider": "old-position-for-token-provider"
},
[...]
}
}
/**
* 2.0.0 config where clientId, clientSecret
* is part of the provider scope instead.
* tokenProvider is removed due to this config is within
* the NavigaID core module for the specific environment
*/
{
"${DBKS:CA_PROVIDER}": {
"clientId": "new-position-for-client-id",
"clientSecret": "new-position-for-client-secret",
"opencontent": {
"host": "${DBKS:CA_OC_PROVIDER_HOST}"
},
[...]
}
}