All skills
Skillintermediate
/configure-blob - Configure Azure Blob Storage
Create and configure an Azure Blob Storage account with security best practices.
Claude Code Knowledge Pack7/10/2026
Overview
/configure-blob - Configure Azure Blob Storage
Create and configure an Azure Blob Storage account with security best practices.
Steps
- Ask the user for the storage purpose: files, backups, media, static hosting, data lake
- Choose the performance tier: Standard (HDD) or Premium (SSD) based on workload
- Select the redundancy: LRS, ZRS, GRS, or RA-GRS based on availability requirements
- Create the storage account with the selected configuration
- Create blob containers with appropriate access levels (private, blob, container)
- Configure encryption: Microsoft-managed or customer-managed keys
- Set up lifecycle management policies for tiering and deletion
- Configure network security: private endpoints, firewall rules, VNet integration
- Enable soft delete for blob and container recovery (default 7 days)
- Set up Azure CDN integration for static content delivery if needed
- Generate the Bicep or ARM template for the storage configuration
- Document: account name, containers, access policies, lifecycle rules, network settings
Rules
- Default to private access level for all containers
- Enable soft delete for accidental deletion recovery
- Use private endpoints for storage accessed from VNets
- Configure lifecycle policies to move infrequently accessed data to cool/archive tiers
- Enable blob versioning for data protection
- Use Azure AD authentication over access keys when possible
- Set up immutability policies for compliance-required data