DEV Community

Cover image for Deploy Azure Storage Accounts with ARM Templates: A Step-by-Step Guide
Habeeb Hameed
Habeeb Hameed

Posted on

Deploy Azure Storage Accounts with ARM Templates: A Step-by-Step Guide

Deploy Azure Storage with ARM Templates

This guide walks you through how to deploy Azure Storage Accounts using ARM templates and the Azure CLI. Let’s break it down step-by-step with screenshots.

πŸ“ Step 1: Create a folder and JSON template, then use Azure CLI to create a resource group named  raw `storageRG` endraw  in the  raw `eastus` endraw  region.

πŸ“ Step 1: Create a folder and JSON template, then use Azure CLI to create a resource group named storageRG in the eastus region.

πŸš€ Step 2: Deploy the storage account using the  raw `az deployment group create` endraw  command and your  raw `storage.json` endraw  ARM template

πŸš€ Step 2: Deploy the storage account using the az deployment group create command and your storage.json ARM template.

βœ… Step 3: Confirm the successful deployment in the Azure Portal. You should see the storage accounts listed in the  raw `storageRG` endraw  group.

βœ… Step 3: Confirm the successful deployment in the Azure Portal. You should see the storage accounts listed in the storageRG group.

πŸ” Step 4: Rerun deployment with a newly generated or modified  raw `newstorage.json` endraw  to test updates or exports.

πŸ” Step 4: Rerun deployment with a newly generated or modified newstorage.json to test updates or exports.

Top comments (0)