Azure Functions provide a rich set of functionalities to build enterprise-grade serverless functions. Though it is easy to create simple functions easily, when making enterprise-grade functions we need to follow some best practices. In this section, we are going to discuss a few best practices when implementing Azure Functions.
Important considerations when building Azure Functions
Securing application settings with Azure Key Vault
In our samples, we stored two connection strings: one for the Service Bus queue and another one for Cosmos DB. Both these application settings carry keys, which are sensitive and need to be secured in one place. Azure Key Vault is the best place to store any secrets. Storing connection strings...