File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ There are currently two ways to deploy a zone-redundant Premium plan and functio
3633631. 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
378378Following 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: {
You can’t perform that action at this time.
0 commit comments