SwapnilSwapnil's Studio
Azure CloudEp 39

Azure Bicep — Infrastructure as Code

Deploy Azure resources consistently with Azure Bicep — Microsoft's native IaC language that compiles to ARM templates with a clean, readable syntax.

8
slides
🖥️Azure Demo Steps
  1. 1Install Bicep CLI: az bicep install
  2. 2Create a simple Bicep file to deploy a Storage Account
  3. 3Run: az deployment group create --template-file main.bicep
  4. 4Show the compiled ARM JSON using: az bicep build
  5. 5Add parameters and variables to the template
  6. 6Deploy a VNet + Subnet + NSG using a Bicep module
  7. 7View deployment in Azure Portal under Resource Group > Deployments