storage

Provision Azure storage accounts, containers, and blobs via the Azure CLI.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/theslashdojo/dojo --skill storage-theslashdojo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: storage
Source: https://github.com/theslashdojo/dojo/tree/main/nodes/azure/storage
Command: npx skills add https://github.com/theslashdojo/dojo --skill storage-theslashdojo

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires azure-cli, and includes scripts (resource) components.

What problem does it solve?

Azure deployments often require durable, accessible storage for artifacts and data. This skill provisions storage accounts, blob containers, and supports uploading or downloading artifacts via the Azure CLI to streamline deployment pipelines.

Core Features & Use Cases

  • Create storage accounts in a chosen resource group and region.
  • Create blob containers and manage artifacts during deployment and handoffs.
  • Upload or download blobs, and optionally retrieve connection strings for legacy tooling or downstream services (e.g., Function Apps).

Quick Start

Create a storage account and a blob container, then upload an artifact to the container using the Azure CLI.

Frequently Asked Questions about storage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an Azure storage account and blob container using the Azure CLI?

You can create an Azure storage account and blob container using the Azure CLI by running az storage commands to provision resources in a chosen resource group and region, then initializing a container for your artifacts.

Can I use Azure RBAC for blob storage authentication instead of a connection string?

Yes, Azure blob storage authentication supports login-based RBAC by default via the Azure CLI, while also offering optional connection strings for legacy tooling or downstream services like Function Apps.

What is the best way to automate artifact uploads to Azure blob storage?

Automating artifact uploads to Azure blob storage is best handled through Azure CLI scripts that create containers and transfer blobs, streamlining deployment pipelines and data handoffs for cloud workloads.

Does provisioning Azure storage with the CLI work for Function App backends?

Provisioning Azure storage with the CLI works for Function App backends by creating storage accounts and retrieving optional connection strings required by legacy downstream services to access deployment artifacts.

Do I need the Azure CLI to manage blob storage for deployment artifacts?

Yes, you need the Azure CLI installed to manage blob storage for deployment artifacts, as it provides the command surface to provision accounts, create containers, and upload or download blobs.

When should I retrieve a connection string for Azure storage instead of using RBAC?

You should retrieve a connection string for Azure storage instead of using RBAC when integrating legacy tooling or downstream services that require explicit connection strings rather than login-based authentication.