How do you capacity plan for Bicep?

When it comes to capacity planning for Bicep, it's crucial to understand the needs of your application and the resources that will be required. This process involves analyzing current usage, predicting future growth, and making decisions that ensure your infrastructure can handle the load. Here is an example of how to create a simple Bicep template that provisions an Azure resource, while also considering your capacity needs.

resource storage 'Microsoft.Storage/storageAccounts@2021-04-01' = { name: 'myuniquestorageaccount' location: resourceGroup().location sku: { name: 'Standard_LRS' } kind: 'StorageV2' properties: {} }

Bicep capacity planning Azure resources infrastructure management