Fundamentals of Bicep

May 8, 2025 • Don Santmajor

Fundamentals of Bicep

Categories: Cloud Azure

Tags: migration best practices bicep Cloud

Installation on Mac

How to create a simple bicep template

In vscode or any editor / ide creat a file with an extension ending in bicep

example

\\ main.bicep
 resource storageAcc 'Microsoft.Storage/storageAccounts@2023-05-01' = {
  name: 'stbiceplessonsdev'
  location: 'australiaeast'
  sku: {
    name: 'Standard_LRS'
  }
  kind:  'StorageV2'
}
resource storageblob 'Microsoft.Storage/storageAccounts/blobServices@' = [for item in list: {
  
}]

TIPS