Azure Functions

Azure functions are serverless as it allow users to run a pieces of code without the need of deploying or configuring any containers or virtual machines. The client only have to provide the piece of code to Azure and the code will run in the Azure environment. Azure functions are often used to perform a specific action when an alert is triggered or a specific state is reached. For example, an Azure function can be used to send a email in response to a security alert.

Last updated