[Solved] How to create an azure blob storage using Arm template?

Create an Azure Storage Account and Blob Container on Azure How to create a new storage account. { “name”: “[parameters(‘storageAccountName’)]”, “type”: “Microsoft.Storage/storageAccounts”, “apiVersion”: “2018-02-01”, “location”: “[resourceGroup().location]”, “kind”: “StorageV2”, “sku”: { “name”: “Standard_LRS”, “tier”: “Standard” }, “properties”: { “accessTier”: “Hot” } } Adding JSON to your ARM template will make sure a new storage account is … Read more