November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Unfortunately this isn't currently possible. While the Azure app requires double underscore and key vault requires double hypens, the deployment API doesn't appear to translate this when setting environment variables. So the following structure has to be used instead:
{
"CrmOrganizationUrl": "https://www.example.com",
"CrmClientId": "removed",
"CrmClientSecret": "removed",
"CrmTenantId": "removed"
}
Hello All,
I'm using the options pattern in .NET 6+ for my current Optimizely CMS 12 build and I have some secrets I would like to move to the new App Setting secrets in the PAAS Portal. As I understand it, these settings will be applied during the deployment of the environment.
The configuration I have for one of my client's CRM systems looks a little like this:
I've tried adding this as a secret in the PAAS Portal using the standard double underscore notation normally used as a configuration setting as well as using a period to separate CrmIntegrationSettings and OrganizationUrl, but the PAAS Portal throws a validation error saying that only Alphanumerics can be used. Has anyone else tried this and managed to get this to work? Does this mean I would have to flatten these settings and lose the ability to bind a section of the json file to an object instead?