Skip to content

Commit 0bb24f4

Browse files
authored
Publish Arc SQL US Gov Virginia Preview
Arc SQL - US Government Virginia Preview
2 parents 3b9f51c + da78aa5 commit 0bb24f4

11 files changed

+126
-22
lines changed

docs/sql-server/azure-arc/backup-local.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ You can also run backups on a **default** schedule:
5050
5151
## Backup schedule level
5252

53-
You can schedule backups at
53+
The following lists the levels of support for backup schedules:
5454

55-
- Instance level
56-
- Database level (available from [extension version 1.1.2594.118](release-notes.md#march-12-2024) or later)
55+
- Instance level backups with a default schedule (available starting with [extension version 1.1.2284.7](release-notes.md#april-10-2023))
56+
- Instance level backups with support for custom schedule (available starting with [extension version 1.1.2504.99](release-notes.md#november-14-2023))
57+
- Database level backups with support for custom schedule (available starting with [extension version 1.1.2594.118](release-notes.md#march-12-2024))
5758

5859
If both database and instance level backup schedule is set, database level schedule takes precedence over the instance level backup schedule. If you delete the database level backup schedule, the instance level backup schedule applies.
5960

docs/sql-server/azure-arc/connect-already-enabled.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ This article explains how to connect your SQL Server instance to Azure Arc on an
2020

2121
If the machine with SQL Server is already connected to Azure Arc, to connect the SQL Server instances, install *Azure extension for SQL Server*. The extension is in the extension tab of "Server -Azure Arc" resource as **Azure Extension for SQL Server**.
2222

23+
For example, you need to use this method to connect a SQL Server instance to Azure Arc at this time in US Government Virginia region, because automatic connection is not currently available in that region. For this case, follow the steps under [Connect](#connect).
24+
2325
> [!IMPORTANT]
2426
> The Azure resource with type `SQL Server - Azure Arc` representing the SQL Server instance installed on the machine uses the same region and resource group as the Azure resources for Arc-enabled servers.
2527
26-
## [Azure portal](#tab/azure)
28+
## Connect
29+
30+
### [Azure portal](#tab/azure)
2731

2832
To install the Azure extension for SQL Server, use the following steps:
2933

@@ -36,7 +40,7 @@ To install the Azure extension for SQL Server, use the following steps:
3640
:::image type="content" source="media/join/license-type-in-extension.png" alt-text="Screenshot for license type and exclude instances.":::
3741
1. Select **Create**.
3842

39-
## [PowerShell](#tab/powershell)
43+
### [PowerShell](#tab/powershell)
4044

4145
To install *Azure extension for SQL Server*, run:
4246

@@ -46,7 +50,7 @@ $Settings = @{ SqlManagement = @{ IsEnabled = $true }; ExcludedSqlInstances = @(
4650
New-AzConnectedMachineExtension -Name "WindowsAgent.SqlServer" -ResourceGroupName {your resource group name} -MachineName {your machine name} -Location {azure region} -Publisher "Microsoft.AzureData" -Settings $Settings -ExtensionType "WindowsAgent.SqlServer"
4751
```
4852

49-
## [Azure CLI](#tab/az)
53+
### [Azure CLI](#tab/az)
5054

5155
To install *Azure extension for SQL Server* for Windows Operating System, run:
5256

docs/sql-server/azure-arc/connect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ms.author: sashan
66
ms.reviewer: mikeray, maghan
77
ms.date: 03/08/2024
88
ms.topic: how-to
9+
ms.custom: references_regions
910
---
1011

1112
# Connect your SQL Server to Azure Arc
@@ -21,8 +22,7 @@ This article explains how to connect your SQL Server instance to Azure Arc. Befo
2122
If the server that runs your SQL Server instance isn't yet connected to Azure, you can initiate the connection from the target machine using the onboarding script. This script connects the server to Azure and installs the Azure extension for SQL Server.
2223

2324
> [!NOTE]
24-
> If your server is already connected to Azure and to deploy Azure SQL Server extension for SQL Server proceed to [When the machine is already connected to an Arc-enabled Server](connect-already-enabled.md).
25-
25+
> If your server is already connected to Azure, proceed to [When the machine is already connected to an Arc-enabled Server](connect-already-enabled.md).
2626
2727
### Generate an onboarding script for SQL Server
2828

docs/sql-server/azure-arc/includes/azure-arc-data-regions.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: MikeRayMSFT
33
ms.author: mikeray
44
ms.date: 02/10/2023
55
ms.topic: include
6-
ms.custom: references_regions
6+
77
---
88

99
Arc-enabled SQL Server is available in the following regions:
@@ -17,6 +17,7 @@ Arc-enabled SQL Server is available in the following regions:
1717
- North Central US
1818
- South Central US
1919
- West Central US
20+
- US Government Virginia <sup>1</sup>
2021
- Canada Central
2122
- Canada East
2223
- UK South
@@ -36,5 +37,9 @@ Arc-enabled SQL Server is available in the following regions:
3637
- Sweden Central
3738
- Norway East
3839

40+
<sup>1</sup> The US Government Virginia region is currently in preview, and not all features are supported yet. For details, review [SQL Server enabled by Azure Arc in US Government Preview](../us-government-region.md).
41+
3942
> [!IMPORTANT]
40-
> For successful onboarding and functioning, assign the same region to both Arc-enabled Server and Arc-enabled SQL Server.
43+
>
44+
> - For successful onboarding and functioning, assign the same region to both Arc-enabled Server and Arc-enabled SQL Server.
45+

docs/sql-server/azure-arc/includes/data-processing-service-permission.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Arc-enabled [!INCLUDE [ssnoversion-md](../../../includes/ssnoversion-md.md)] req
1010
Each virtual or physical server needs to communicate with Azure. Specifically, they require connectivity to:
1111

1212
- URL: `*.<region>.arcdataservices.com`
13+
- For US Government Virginia regions, use `*.<region>.arcdataservices.azure.us`.
1314
- Port: 443
1415
- Direction: Outbound
1516
- Authentication provider: Microsoft Entra ID

docs/sql-server/azure-arc/overview.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Feature overview. Explains how you can manage instances of SQL Serv
44
author: anosov1960
55
ms.author: sashan
66
ms.reviewer: mikeray, randolphwest
7-
ms.date: 03/25/2025
7+
ms.date: 06/09/2025
88
ms.topic: concept-article
99
ms.custom: references_regions
1010
---
@@ -108,7 +108,13 @@ The following diagram illustrates the architecture of [!INCLUDE [ssazurearc](../
108108

109109
[!INCLUDE [get-jumpstart-image](includes/get-jumpstart-image.md)]
110110

111-
## <a id="feature-differentiation"></a> Feature availability depending on license type
111+
## Supported Azure regions
112+
113+
[!INCLUDE [azure-arc-data-regions](includes/azure-arc-data-regions.md)]
114+
115+
<a id="feature-differentiation"></a>
116+
117+
## Feature availability depending on license type
112118

113119
[!INCLUDE [license-types](includes/license-types.md)]
114120

@@ -143,10 +149,6 @@ The [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] Setup Installation Wiz
143149

144150
For VMware clusters, review [Support on VMware](#support-on-vmware).
145151

146-
## Supported Azure regions
147-
148-
[!INCLUDE [azure-arc-data-regions](includes/azure-arc-data-regions.md)]
149-
150152
## Related content
151153

152154
- [Learn about the prerequisites to connect your SQL Server to Azure Arc](prerequisites.md)

docs/sql-server/azure-arc/release-notes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Latest release notes for SQL Server enabled by Azure Arc
44
author: anosov1960
55
ms.author: sashan
66
ms.reviewer: mikeray, randolphwest
7-
ms.date: 05/12/2025
7+
ms.date: 05/13/2025
88
ms.topic: conceptual
99
ms.custom:
1010
- ignite-2023
@@ -23,6 +23,12 @@ This article lists:
2323

2424
Extension versions are cumulative. Higher extension versions include all of the updates from previous versions. A release might include internal features. If the version release notes don't describe features, then the updates were internal.
2525

26+
## June 5, 2025
27+
28+
Arc enabled SQL Server is available as preview feature in US Government Virginia with a limited set of features. [SQL Server enabled by Azure Arc in US Government Preview](us-government-region.md).
29+
30+
This release announces the preview region availability. It does not update extension version or other components of any agent or extension.
31+
2632
## May 13, 2025
2733

2834
**Extension version**: `1.1.3049.285`

docs/sql-server/azure-arc/troubleshoot-telemetry-endpoint.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Describes how to troubleshoot connectivity to the data processing
44
author: twright-msft
55
ms.author: twright
66
ms.reviewer: mikeray
7-
ms.date: 03/25/2025
7+
ms.date: 06/09/2025
88
ms.topic: troubleshooting
99
---
1010

@@ -104,6 +104,12 @@ For DPS:
104104
```powershell
105105
Invoke-WebRequest dataprocessingservice.<region>.arcdataservices.com
106106
```
107+
> [!NOTE]
108+
> For US Government Virginia, replace `arcdataservices.com` with `arcdataservices.azure.us`. This example would be:
109+
>
110+
> ```PowerShell
111+
> Invoke-WebRequest dataprocessingservice.<region>.arcdataservices.azure.us
112+
> `
107113
108114
A possible response status code is:
109115
@@ -113,12 +119,17 @@ StatusCode : 200
113119
StatusDescription : OK
114120
```
115121
116-
This one should return a 200 as there is an unauthenticated route.
122+
200 is expected as there is an unauthenticated route.
117123

118124
## Probe connectivity to all regions
119-
125+
> [!NOTE]
126+
> For US Government Virginia, replace `arcdataservices.com` with `arcdataservices.azure.us`.
127+
>
120128
You can probe connectivity to all regions with the [test-connectivity.ps1](https://github.com/microsoft/sql-server-samples/blob/master/samples/features/azure-arc/troubleshooting/test-connectivity.ps1) PowerShell script.
121129

130+
> [!NOTE]
131+
> For the US Government Virginia region, replace `arcdataservices.com` with `arcdataservices.azure.us`.
132+
122133
:::code language="powershell" source="~/../sql-server-samples/samples/features/azure-arc/troubleshooting/test-connectivity.ps1":::
123134

124135
## Check TLS version compatibility
@@ -146,7 +157,7 @@ To connect to Azure, the endpoints use `*.arcdataservices.com`.
146157

147158
Beginning with [March, 12 2024](release-notes.md#march-12-2024), the Azure Extension for SQL Server uses the following endpoints:
148159

149-
- DPS: `dataprocessingservice.<region>.arcdataservices.com`
160+
- DPS: `dataprocessingservice.<region>.arcdataservices.com`, or for the US Government Virginia region, `*.<region>.arcdataservices.azure.us`.
150161
- Telemetry `telemetry.<region>.arcdataservices.com`
151162

152163
Replace `<region>` with the short name of the Azure region where the Arc machine resource is located. The short name is derived from the Azure region name without spaces and all lower case.
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Azure Government Preview
3+
description: "Describes features and limitations currently available for SQL Server enabled by Azure Arc on US Government region."
4+
author: AbdullahMSFT
5+
ms.author: amamun
6+
ms.reviewer: MikeRayMSFT
7+
ms.topic: conceptual #Don't change
8+
ms.date: 06/09/2025
9+
10+
#customer intent: As a U.S. government agency or organization, I want to manage SQL Server instances outside of Azure from the Azure Government portal so that I can ensure secure and compliant management of my SQL Server estate.
11+
12+
---
13+
14+
# SQL Server enabled by Azure Arc in US Government Preview
15+
16+
This article describes features and limitations currently available for SQL Server enabled by Azure Arc on US Government regions. It also:
17+
18+
- Points to instructions how to on board your SQL Server in US Government regions
19+
- Lists known issues and options to work around the issues
20+
21+
SQL Server enabled by Azure Arc creates SQL Server Azure Arc resources in US Government. View these resources in the Azure Government portal just like any Azure resource. The portal provides a single pane of glass to monitor and organize your SQL Server estate in the government cloud.
22+
23+
[!INCLUDE [preview](../../includes/preview.md)]
24+
25+
Currently, these features are only available:
26+
27+
- In the US Government Virginia region
28+
- On Windows operating system
29+
30+
With SQL Server enabled by Azure Arc, U.S. government agencies and organizations can manage SQL Server instances outside of Azure from the Azure Government portal, in a secure and compliant manner.
31+
32+
The latest updates are available in the [Release notes - SQL Server enabled by Azure Arc](release-notes.md).
33+
34+
## Onboard your SQL Server
35+
36+
To onboard your SQL Server, complete the following steps from the Azure (US Gov) portal.
37+
38+
1. [Connect hybrid machines with Azure Arc-enabled servers](/azure/azure-arc/servers/learn/quick-enable-hybrid-vm)
39+
1. [Connect your SQL Server to Azure Arc on a server already enabled by Azure Arc](connect-already-enabled.md)
40+
41+
## Available features
42+
43+
Currently, in the US Government Virginia region, SQL Server registration provides the following features:
44+
45+
- [Connect](connect.md) (onboard) a SQL Server instance to Azure Arc.
46+
- [SQL Server inventory](overview.md#manage-your-sql-server-instances-at-scale-from-a-single-point-of-control) which includes the following capabilities in the Azure portal:
47+
- View the SQL Server instance as an Azure resource.
48+
- View databases as an Azure resource.
49+
- View the properties for each server. For example, you can view the version, edition, and database for each instance.
50+
51+
[All other features](overview.md#feature-differentiation), including license management, and Extended Security Updates (ESU), are not currently available.
52+
53+
## Limitations
54+
55+
The following SQL Server features are not currently available in any US Government region:
56+
57+
- Failover cluster instance (FCI)
58+
- Availability group (AG)
59+
- SQL Server services like [!INCLUDE [ssis-md](../../includes/ssis-md.md)], [!INCLUDE [ssrs](../../includes/ssrs.md)], or Power BI Report Server as well.
60+
61+
## Known issues
62+
63+
- In Azure portal, the Arc SQL Server Instance properties page does not show the `licenseType` property value.
64+
- **Workaround**: Refer to Arc Server page for accurate and updated license information.
65+
66+
- Resources deleted on-premises might not be immediately deleted from Azure portal. For example, if you delete a database on-premises, the image of the database on the portal remains until a refresh occurs.
67+
- **Workaround**: To reflect the change immediately, delete the resource in the portal.
68+
69+
## Related content
70+
71+
- [SQL Server enabled by Azure Arc](overview.md)

docs/sql-server/end-of-support/sql-server-extended-security-updates.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ To download ESUs, follow these steps:
256256

257257
[!INCLUDE [azure-arc-data-regions](../azure-arc/includes/azure-arc-data-regions.md)]
258258

259-
Government regions aren't supported. For more information, see [Can customers get free Extended Security Updates on Azure Government regions?](extended-security-updates-frequently-asked-questions.md#can-i-get-free-extended-security-updates-on-azure-government-regions)
259+
> [!NOTE]
260+
> ESUs aren't supported in Azure Government regions. For more information, see [Free ESUs on Azure Government regions](extended-security-updates-frequently-asked-questions.md#can-i-get-free-extended-security-updates-on-azure-government-regions).
260261
261262
## Frequently asked questions
262263

0 commit comments

Comments
 (0)