File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -168,15 +168,15 @@ You can configure the plan size and maximums in the Azure portal by selecting th
168
168
You can also increase the maximum burst limit from the Azure CLI:
169
169
170
170
``` azurecli-interactive
171
- az functionapp plan update -g <resource_group > -n <premium_plan_name > --max-burst <desired_max_burst >
171
+ az functionapp plan update -g <RESOURCE_GROUP > -n <PREMIUM_PLAN_NAME > --max-burst <YOUR_MAX_BURST >
172
172
```
173
173
174
174
# [ Azure PowerShell] ( #tab/azure-powershell )
175
175
176
176
You can also increase the maximum burst limit from the Azure PowerShell:
177
177
178
178
``` azurepowershell-interactive
179
- Update-AzFunctionAppPlan -ResourceGroupName <resource_group > -Name <premium_plan_name > -MaximumWorkerCount <desired_max_burst > -Force
179
+ Update-AzFunctionAppPlan -ResourceGroupName <RESOURCE_GROUP > -Name <PREMIUM_PLAN_NAME > -MaximumWorkerCount <YOUR_MAX_BURST > -Force
180
180
```
181
181
182
182
---
@@ -198,15 +198,15 @@ You can configure the minimum instances in the Azure portal by selecting the **S
198
198
Increasing the calculated minimum for a plan can be done using the Azure CLI.
199
199
200
200
``` azurecli-interactive
201
- az functionapp plan update -g <resource_group > -n <premium_plan_name > --min-instances <desired_min_instances >
201
+ az functionapp plan update -g <RESOURCE_GROUP > -n <PREMIUM_PLAN_NAME > --min-instances <YOUR_MIN_INSTANCES >
202
202
```
203
203
204
204
# [ Azure PowerShell] ( #tab/azure-powershell )
205
205
206
206
Increasing the calculated minimum for a plan can be done using the Azure PowerShell.
207
207
208
208
``` azurepowershell-interactive
209
- Update-AzFunctionAppPlan -ResourceGroupName <resource_group > -Name <premium_plan_name > -MinimumWorkerCount <desired_min_instances > -Force
209
+ Update-AzFunctionAppPlan -ResourceGroupName <RESOURCE_GROUP > -Name <PREMIUM_PLAN_NAME > -MinimumWorkerCount <YOUR_MIN_INSTANCES > -Force
210
210
```
211
211
212
212
---
You can’t perform that action at this time.
0 commit comments