LinuxCommandLibrary

az-storage-container

Manage blob storage containers in Azure.

TLDR

Create a container in a storage account

$ az storage container create --account-name [storage_account_name] --name [container_name] --public-access [access_level] --fail-on-exist
copy


Generate a shared access signature for the container
$ az storage container generate-sas --account-name [storage_account_name] --name [container_name] --permissions [sas_permissions] --expiry [expiry_date] --https-only
copy


List containers in a storage account
$ az storage container list --account-name [storage_account_name] --prefix [filter_prefix]
copy


Mark the specified container for deletion
$ az storage container delete --account-name [storage_account_name] --name [container_name] --fail-not-exist
copy

Copied to clipboard