Skip to content

Commit d7b05df

Browse files
authored
Fix command for creating Premium plan in Azure CLI
1 parent 55ceb5f commit d7b05df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

articles/reliability/reliability-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ There are currently two ways to deploy a zone-redundant Premium plan and functio
363363
1. When creating the Premium plan, add the `--zone-redundant true` parameter:
364364
365365
```azurecli
366-
az functionapp create --resource-group <RESOURCE_GROUP> --name <APP_NAME> --storage-account <STORAGE_NAME> --SKU EP1 --zone-redundant true
366+
az functionapp plan create --resource-group <RESOURCE_GROUP> --name <APP_NAME> --storage-account <STORAGE_NAME> --SKU EP1 --zone-redundant true
367367
```
368368
369369
#### [Bicep template](#tab/bicep)
@@ -378,7 +378,7 @@ The only properties to be aware of while creating a zone-redundant hosting plan
378378
Following is a Bicep template snippet for a zone-redundant, Premium plan. It shows the `zoneRedundant` field and the `capacity` specification.
379379
380380
```bicep
381-
resource flexFuncPlan 'Microsoft.Web/serverfarms@2021-01-15' = {
381+
resource EPFuncPlan 'Microsoft.Web/serverfarms@2021-01-15' = {
382382
name: '<YOUR_PLAN_NAME>'
383383
location: '<YOUR_REGION_NAME>'
384384
sku: {

0 commit comments

Comments
 (0)