Skip to content

Commit 954f425

Browse files
author
Matthew Fisher
authored
Merge pull request #694 from bacongobbler/fix-azure-docs
fix(azure): use regular storage instead of premium
2 parents 2dd2e04 + 2817dbc commit 954f425

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/quickstart/provider/azure-acs/install-azure-acs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ helm repo add deis https://charts.deis.com/workflow
3232
It is recommended to use a dedicated storage account for the operational aspects of Workflow, which includes storing slug and container images, database backups, and disaster recovery. This storage account is passed as parameters during the `helm install` command in the next step. Replace the `SA_NAME` variable with a unique name for your storage account and execute these commands.
3333
```
3434
$ export SA_NAME=YourGlobalUniqueName
35-
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Premium_LRS
35+
$ az storage account create -n $SA_NAME -l $DC_LOCATION -g $RG_NAME --sku Standard_LRS
3636
$ export SA_KEY=`az storage account keys list -n $SA_NAME -g RG_NAME --query keys[0].value --output tsv`
3737
3838
```

0 commit comments

Comments
 (0)