Skip to content

Commit c652a94

Browse files
committed
Fixing uppercase for placeholder text
1 parent 6b5298e commit c652a94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-premium-plan.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ You can configure the plan size and maximums in the Azure portal by selecting th
168168
You can also increase the maximum burst limit from the Azure CLI:
169169

170170
```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>
172172
```
173173

174174
# [Azure PowerShell](#tab/azure-powershell)
175175

176176
You can also increase the maximum burst limit from the Azure PowerShell:
177177

178178
```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
180180
```
181181

182182
---
@@ -198,15 +198,15 @@ You can configure the minimum instances in the Azure portal by selecting the **S
198198
Increasing the calculated minimum for a plan can be done using the Azure CLI.
199199

200200
```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>
202202
```
203203

204204
# [Azure PowerShell](#tab/azure-powershell)
205205

206206
Increasing the calculated minimum for a plan can be done using the Azure PowerShell.
207207

208208
```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
210210
```
211211

212212
---

0 commit comments

Comments
 (0)