Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 842 Bytes

functions-create-storage-account.md

File metadata and controls

16 lines (13 loc) · 842 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
09/04/2018
glenga

Create an Azure Storage account

Functions uses a general-purpose account in Azure Storage to maintain state and other information about your functions. Create a general-purpose storage account in the resource group you created by using the az storage account create command.

In the following command, substitute a globally unique storage account name where you see the <storage_name> placeholder. Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only.

az storage account create --name <storage_name> --location westeurope --resource-group myResourceGroup --sku Standard_LRS