Deploying from ARM and Bicep
Learn what Azure Resource Manager (ARM) templates are, how they can be compiled from Bicep, and how to deploy Cosmos DB accounts.
We'll cover the following...
ARM templates
If you’re familiar with Azure, you might have encountered Azure Resource Manager (ARM) already, as it is a reliable way to deploy resources to Azure.
ARM templates are JSON documents that describe how to deploy a specific service. The properties to use differ from the parameters we use in the Azure portal, Azure CLI, and PowerShell.
The main advantages of using files and infrastructure as code (IaC) are:
Predictable results ...