|
1 | 1 | --- |
2 | | -title: 'Add scale units for host scaling: Azure portal' |
| 2 | +title: Configure host scaling |
3 | 3 | titleSuffix: Azure Bastion |
4 | 4 | description: Learn how to add more instances (scale units) to Azure Bastion. |
5 | 5 | author: abell |
6 | 6 | ms.service: azure-bastion |
7 | 7 | ms.topic: how-to |
8 | | -ms.date: 03/31/2025 |
| 8 | +ms.date: 03/13/2026 |
9 | 9 | ms.author: abell |
10 | | -# Customer intent: As someone with a networking background, I want to configure host scaling using the Azure portal. |
| 10 | +# Customer intent: As a network administrator, I want to configure scale units and understand what the impact it will be on my cloud environment. |
11 | 11 |
|
12 | 12 | --- |
13 | 13 |
|
14 | | -# Configure host scaling using the Azure portal |
| 14 | +# Configure host scaling for Azure Bastion |
15 | 15 |
|
16 | | -This article helps you add more scale units (instances) to Azure Bastion to accommodate additional concurrent client connections. The steps in this article use the Azure portal. For more information about host scaling, see [Configuration settings](configuration-settings.md#instance). You can also configure host scaling using [PowerShell](configure-host-scaling-powershell.md). |
| 16 | +This article helps you add scale units (instances) to your Azure Bastion deployment so you can support more concurrent client connections. Each instance supports 20 concurrent RDP connections and 40 concurrent SSH connections for medium workloads. For more information about host scaling, see [Instances and host scaling](configuration-settings.md#instance). |
| 17 | + |
| 18 | +> [!IMPORTANT] |
| 19 | +> Host scaling requires the Standard SKU tier or higher. Any changes to scale units will disrupt active Bastion connections. |
17 | 20 |
|
18 | 21 | ## Configuration steps |
19 | 22 |
|
| 23 | +# [Azure portal](#tab/portal) |
| 24 | + |
20 | 25 | 1. Sign in to the [Azure portal](https://portal.azure.com). |
21 | | -1. In the Azure portal, go to your Bastion host. |
22 | | -1. Host scaling instance count requires Standard SKU or higher. On the **Configuration** page, for **SKU**, verify the SKU is Standard or higher. If the SKU is Basic, select a higher SKU. To configure scaling, adjust the instance count. Each instance is a scale unit. |
| 26 | +1. Go to your Bastion host. |
| 27 | +1. On the **Configuration** page, for **SKU**, verify the SKU is **Standard** or higher. If the SKU is Basic, select a higher SKU. |
| 28 | +1. Adjust the **Instance count**. Each instance is a scale unit. |
23 | 29 | 1. Select **Apply** to apply changes. |
24 | 30 |
|
25 | | - >[!NOTE] |
26 | | - > Any changes to the host scale units will disrupt active bastion connections. |
27 | | - > |
| 31 | +# [PowerShell](#tab/powershell) |
| 32 | + |
| 33 | +1. Get the target Bastion resource. Use the following example, modifying the values as needed. |
| 34 | + |
| 35 | + ```azurepowershell-interactive |
| 36 | + $bastion = Get-AzBastion -Name bastion -ResourceGroupName bastion-rg |
| 37 | + ``` |
| 38 | + |
| 39 | +1. Set the target scale unit, also known as "instance count". In the following example, the scale units are set to 5. |
| 40 | + |
| 41 | + ```azurepowershell-interactive |
| 42 | + $bastion.ScaleUnit = 5 |
| 43 | + Set-AzBastion -InputObject $bastion |
| 44 | + ``` |
| 45 | + |
| 46 | +1. Confirm **Y** to overwrite the resource. After the resource is overwritten, the specified value is shown in the output for **Scale Units**. |
| 47 | + |
| 48 | +--- |
28 | 49 |
|
29 | 50 | ## Next steps |
30 | 51 |
|
31 | | -For more information about configuration settings, see [Azure Bastion configuration settings](configuration-settings.md). |
| 52 | +* Learn about [Azure Bastion configuration settings](configuration-settings.md). |
0 commit comments