How can I set the client Id for a Function App without setting explicit authentication
Hi,
I have a function App in my environment where the authentication is not explicitly set up, since the http triggered functions currently use function key as the anonymous level
However In the same function app we have set up durable functions monitor , as we can't use a dedicated function app just for durable function monitor for some reason.
Hence we don't prefer to set explicit authentication using Authentication tab in the function app. Is there any way I could set the environment variable WEBSITE_AUTH_CLIENT_ID for the function app without setting the authentication tab in the function app?
Since we do want to authenticate the durable function monitor.
Looking at the code of https://github.com/microsoft/DurableFunctionsMonitor, I am trying to make the authentication work by setting some environment variables like WEBSITE_AUTH_CLIENT_ID and a couple other that start with WEBSITE_
Appreciate your help in this