Search⌘ K

Authentication and Azure Managed Identities

Explore how to set up Azure DevOps service connections using CLI commands and create service principals for secure resource access. Understand enabling Managed Identities in ARM templates to automate and manage your Azure Function deployments within CI/CD pipelines.

Setting up an Azure DevOps service connection

In this lesson, we will configure our Azure DevOps service connection. It is necessary for our pipelines to get access to our subscription and to be able to create resources.

PowerShell vs. CLI

Until now, we have been using PowerShell to run our commands using the terminal. However, DevOps requires us to use the CLI so we will be using that moving forward. This means that we will have to authenticate the CLI interactively. We ...