Skip to content

Instantly share code, notes, and snippets.

@weeyin83
Last active May 22, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weeyin83/4f534adf2798fdea9463a1bd7a0a4002 to your computer and use it in GitHub Desktop.
Save weeyin83/4f534adf2798fdea9463a1bd7a0a4002 to your computer and use it in GitHub Desktop.
Create a standard storage account
#Create the resource group
az group create \
--name rg-photostorage \
--location UKSouth
#Create the storage account
az storage account create \
--name sarahsphotos \
--resource-group rg-photostorage \
--location UKSouth \
--sku Standard_GRS \
--encryption-services blob
#Create the storage blog container
az storage container create \
--account-name sarahsphotos \
--name 2020-photos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment