What is Azure Bicep and how do you use it?
- Azure Bicep is a domain-specific language (DSL) for declaratively deploying
Azure resources.
- Simplifies ARM templates with cleaner syntax.
Example – Deploy an Azure Storage Account:
resource storageAccount
'Microsoft.Storage/storageAccounts@2022-09-01' = {
name: 'mystorageacct'
location: resourceGroup().location
sku: {
name: 'Standard_LRS'
kind: 'StorageV2'