Category: Azure

  • Azure App Configuration vs App Settings

    For a long time now, App Settings have been the way to configure your app’s settings such as environment variables and connection strings for Azure App Services. In February 2019, Microsoft announced a new service called App Configuration – which, currently in preview – allows you to easily centralise your app settings across multiple resources.…

  • Which Azure Functions runtime am I using?

    Microsoft currently support two versions of the Azure Functions runtime – version 1 and version 2. This post will look at the main changes between the two versions, and show you how you can check which runtime you’re using. What are the key differences between versions? Version 1 of the runtime was introduced back in…

  • Azure Functions App vs Functions

    A common question asked by newcomers to the world of Azure Functions, is what’s the difference between an Azure functions app vs a function? Are they the same thing? In short, there is a difference. You can think of the functions app as if it refers to a workspace that contains one or more functions.…

  • What’s an Azure Service Principal and Managed Identity?

    In this post, we’ll take a brief look at the difference between an Azure service principal and a managed identity (formerly referred to as a Managed Service Identity or MSI). Dive deeper into Azure AD service principals and managed identities in our new detailed ebook about Azure AD What is a service principal or managed…

  • How to add Application Insights to an Azure function

    Today we’re going to look at how easy it is to add Azure Application Insights (part of Azure Monitor) to an Azure Function. What is Application Insights? In short, Application Insights is a performance and monitoring tool that forms part of the Azure Monitor suite. It allows you to access detailed telemetry on requests made…

  • Create an Azure Function App using a Mac

    In this post, we’ll take a look at how you can quickly create an Azure Function when using a Mac. In particular, we’ll be using the Azure Functions command line tools to create our functions app. Getting started Before you can create a function, you’ll need to install the Azure Function command line tools. But…