Setting up Managed Identity
Explore how to set up Managed Identity for Azure resources in an event-driven architecture. This lesson guides you through enabling MSI for Function apps to securely access storage queues using OAuth2 tokens, employing both PowerShell commands and the Azure portal.
We'll cover the following...
We'll cover the following...
Managed Services Identities (MSI)
Managed Services Identities (MSI) is a service that allows your applications or functions to get access to other Azure resources. MSI is based on Principal Accounts and OAuth2. In our case, we need access to the storage queue from the Function app.
When MSI is enabled for your resource, Azure will create a Service Principal in the Active Directory associated with this resource. ...