Skip to content

Commit 8b4eb0e

Browse files
authored
Merge pull request #107821 from srdan-bozovic-msft/master
Updates to SQL MI networking docs on subnet-delegation
2 parents 01a2c76 + fba60b1 commit 8b4eb0e

5 files changed

+200
-41
lines changed

articles/sql-database/sql-database-managed-instance-configure-vnet-subnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
1010
author: srdan-bozovic-msft
1111
ms.author: srbozovi
1212
ms.reviewer: sstein, bonova, carlrab
13-
ms.date: 01/15/2019
13+
ms.date: 03/17/2020
1414
---
1515
# Configure an existing virtual network for Azure SQL Database Managed Instance
1616

@@ -32,7 +32,7 @@ If one of the following cases applies to you, you can validate and modify your n
3232
If you want to create a Managed Instance inside an existing subnet, we recommend the following PowerShell script to prepare the subnet:
3333

3434
```powershell
35-
$scriptUrlBase = 'https://raw.githubusercontent.com/Microsoft/sql-server-samples/master/samples/manage/azure-sql-db-managed-instance/prepare-subnet'
35+
$scriptUrlBase = 'https://raw.githubusercontent.com/Microsoft/sql-server-samples/master/samples/manage/azure-sql-db-managed-instance/delegate-subnet'
3636
3737
$parameters = @{
3838
subscriptionId = '<subscriptionId>'
@@ -41,7 +41,7 @@ $parameters = @{
4141
subnetName = '<subnetName>'
4242
}
4343
44-
Invoke-Command -ScriptBlock ([Scriptblock]::Create((iwr ($scriptUrlBase+'/prepareSubnet.ps1?t='+ [DateTime]::Now.Ticks)).Content)) -ArgumentList $parameters
44+
Invoke-Command -ScriptBlock ([Scriptblock]::Create((iwr ($scriptUrlBase+'/delegateSubnet.ps1?t='+ [DateTime]::Now.Ticks)).Content)) -ArgumentList $parameters
4545
```
4646

4747
The script prepares the subnet in three steps:

0 commit comments

Comments
 (0)