Configuring Secrets and Keys
Learn how to configure access keys in Azure Functions to ensure authorized access.
We'll cover the following...
When our function app has endpoints exposed to the outside world, such as HTTP triggers, we need to make sure that only authorized clients can access it. The standard mechanism for enabling this in Azure Functions is the use of secret keys. This way, the function endpoint will only be accessible to those clients that have specified the correct key-value pair in the request.
There are two main types of keys supported by Azure Functions: ...