Create a storage account
Create a Storage account in the same region as your Virtual Network.
az network vnet list --query "[].{Name:name, Region:location, ResourceGroup:resourceGroup, AddressSpace:addressSpace.addressPrefixes[0], ProvisioningState:provisioningState, SubscriptionId:id}" --output tableREGION= # Region of your Virtual Network, example: REGION=eastus
VNET= # The Virtual Network name, example: VNET=ProductionA1
RGRP= # The Resource Group of your Virtual Network, example: RGRP=PRODaz storage account create \
--name <storage-account-name> \
--resource-group $RGRP \
--location $REGION> \
--sku Standard_LRS \
--kind StorageV2 \
--allow-shared-key-access trueLast updated