Skip to content

Commit 5d11cb6

Browse files
authored
Merge pull request #184972 from PramodValavala-MSFT/patch-167
(AzureCXP) add missing storage account flag
2 parents 6c41884 + 1f8d937 commit 5d11cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/create-first-function-cli-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
255255
# [Azure CLI](#tab/azure-cli)
256256

257257
```azurecli
258-
az functionapp create --consumption-plan-location westeurope --runtime python --runtime-version 3.8 --functions-version 3 --name <APP_NAME> --os-type linux
258+
az functionapp create --consumption-plan-location westeurope --runtime python --runtime-version 3.8 --functions-version 3 --name <APP_NAME> --os-type linux --storage-account <STORAGE_NAME>
259259
```
260260

261261
The [az functionapp create](/cli/azure/functionapp#az_functionapp_create) command creates the function app in Azure. If you are using Python 3.7 or 3.6, change `--runtime-version` to `3.7` or `3.6`, respectively. You must supply `--os-type linux` because Python functions can't run on Windows, which is the default.

0 commit comments

Comments
 (0)