Skip to content

Commit efc54d6

Browse files
committed
Merge host scaling articles into single tabbed article
1 parent 7b6533d commit efc54d6

4 files changed

Lines changed: 35 additions & 18 deletions

File tree

articles/bastion/TOC.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,7 @@
8989
- name: Platform
9090
items:
9191
- name: Configure host scaling
92-
items:
93-
- name: Azure portal
94-
href: configure-host-scaling.md
95-
- name: Azure PowerShell
96-
href: configure-host-scaling-powershell.md
92+
href: configure-host-scaling.md
9793
- name: Design architecture
9894
href: design-architecture.md
9995
- name: Availability zones and disaster recovery

articles/bastion/configuration-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ You can configure this setting using the following methods:
7878
| Method | Value | Links | Requires Standard SKU or higher|
7979
| --- | --- | --- | ---|
8080
| Azure portal |Instance count | [How-to](configure-host-scaling.md)| Yes |
81-
| Azure PowerShell | ScaleUnit | [How-to](configure-host-scaling-powershell.md) | Yes |
81+
| Azure PowerShell | ScaleUnit | [How-to](configure-host-scaling.md) | Yes |
8282

8383
## <a name="ports"></a>Custom ports
8484

articles/bastion/configure-host-scaling-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom: devx-track-azurepowershell
99
ms.topic: how-to
1010
ms.date: 08/12/2024
1111
ms.author: abell
12-
# Customer intent: As someone with a networking background, I want to configure host scaling using Azure PowerShell.
12+
# Customer intent: As a network administrator, I want to configure scale units and understand what the impact it will be on my cloud environment.
1313
---
1414

1515
# Configure host scaling using Azure PowerShell
Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,52 @@
11
---
2-
title: 'Add scale units for host scaling: Azure portal'
2+
title: Configure host scaling
33
titleSuffix: Azure Bastion
44
description: Learn how to add more instances (scale units) to Azure Bastion.
55
author: abell
66
ms.service: azure-bastion
77
ms.topic: how-to
8-
ms.date: 03/31/2025
8+
ms.date: 03/13/2026
99
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.
1111

1212
---
1313

14-
# Configure host scaling using the Azure portal
14+
# Configure host scaling for Azure Bastion
1515

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.
1720
1821
## Configuration steps
1922

23+
# [Azure portal](#tab/portal)
24+
2025
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.
2329
1. Select **Apply** to apply changes.
2430

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+
---
2849

2950
## Next steps
3051

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

Comments
 (0)