I have an Azure Function App that I am attempting to secure with OKTA.
In the root of my function app I have an auth.json file and I am replacing the Client Id etc with settings in my App Settings..except they arent replacing. It is keeping the literal values.
I am wanting to reference the item "MYSECRET".
This is the content of my auth.json that lives in the root of the Function APP:
For Line 15 I have attempted both:
"%MYSECRET%"
"MYSECRET"
But I am getting the literal value "MYSECRET" rather than the value behind it, "1234". Can this be done?