Deciding Between Separate or Unified Azure App Registrations for Different Environments: Insights and AWS Comparisons

In Azure, deciding whether to use separate App Registrations for different environments of an application, such as development, staging, and production, depends largely on the specific needs and architecture of your project. Using separate App Registrations for each environment offers several advantages. It provides a clear boundary between environments, enhancing security by preventing accidental access …

Read more

How to Export Azure Function App Settings

Copying app settings from one Azure Function app to another without doing it manually can be done with the Azure CLI. First, install Azure CLI if you haven’t already. You can download and install it from Azure’s Official Website. Once you have it installed do the following. Login to Azure Export App Settings Import App …

Read more

How to Include Paths and Exclude All Others

I am in the process of building out several pipelines that correspond with projects within my .NET 6 solution. I did not want a pipeline to run if it didn’t need to. If a change was made to Project B and Project B isn’t connected to Project A through project references, I don’t want Project …

Read more

Azure Template Parameters and Variables Are Confusing

What I’m trying to do Initially, I was trying to use a variable in a variable group I assigned to a stage in a template as follows: The variable group contains a variable called Environment. Unfortunately the macro syntax variable, $(Environment), here doesn’t expand to insert the value into the template. Neither does the template …

Read more

What is an Azure Service Connection

An Azure Service Connection is the connection between Azure DevOps and your Azure subscription. It allows Azure DevOps to authenticate and interact with Azure resources and external resources on your behalf. When you create a service connection in Azure DevOps, you will give it a name. This is the name that you would use in …

Read more