Skip to content

Commit 4f1b2c4

Browse files
committed
changed microsoft.storage to microosoft.storage.global in portal instructions
1 parent 57bb677 commit 4f1b2c4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/storage/elastic-san/elastic-san-connect-linux.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In your virtual network, enable the Storage service endpoint on your subnet. Thi
3939
# [Portal](#tab/azure-portal)
4040

4141
1. Navigate to your virtual network and select **Service Endpoints**.
42-
1. Select **+ Add** and for **Service** select **Microsoft.Storage**.
42+
1. Select **+ Add** and for **Service** select **Microsoft.Storage.Global**.
4343
1. Select any policies you like, and the subnet you deploy your Elastic SAN into and select **Add**.
4444

4545
:::image type="content" source="media/elastic-san-create/elastic-san-service-endpoint.png" alt-text="Screenshot of the virtual network service endpoint page, adding the storage service endpoint." lightbox="media/elastic-san-create/elastic-san-service-endpoint.png":::
@@ -55,13 +55,13 @@ $virtualNetwork = Get-AzVirtualNetwork -ResourceGroupName $resourceGroupName -Na
5555
5656
$subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $virtualNetwork -Name $subnetName
5757
58-
$virtualNetwork | Set-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix $subnet.AddressPrefix -ServiceEndpoint "Microsoft.Storage" | Set-AzVirtualNetwork
58+
$virtualNetwork | Set-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix $subnet.AddressPrefix -ServiceEndpoint "Microsoft.Storage.Global" | Set-AzVirtualNetwork
5959
```
6060

6161
# [Azure CLI](#tab/azure-cli)
6262

6363
```azurecli
64-
az network vnet subnet update --resource-group "myresourcegroup" --vnet-name "myvnet" --name "mysubnet" --service-endpoints "Microsoft.Storage"
64+
az network vnet subnet update --resource-group "myresourcegroup" --vnet-name "myvnet" --name "mysubnet" --service-endpoints "Microsoft.Storage.Global"
6565
```
6666
---
6767

articles/storage/elastic-san/elastic-san-connect-windows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In your virtual network, enable the Storage service endpoint on your subnet. Thi
3939
# [Portal](#tab/azure-portal)
4040

4141
1. Navigate to your virtual network and select **Service Endpoints**.
42-
1. Select **+ Add** and for **Service** select **Microsoft.Storage**.
42+
1. Select **+ Add** and for **Service** select **Microsoft.Storage.Global**.
4343
1. Select any policies you like, and the subnet you deploy your Elastic SAN into and select **Add**.
4444

4545
:::image type="content" source="media/elastic-san-create/elastic-san-service-endpoint.png" alt-text="Screenshot of the virtual network service endpoint page, adding the storage service endpoint." lightbox="media/elastic-san-create/elastic-san-service-endpoint.png":::
@@ -55,13 +55,13 @@ $virtualNetwork = Get-AzVirtualNetwork -ResourceGroupName $resourceGroupName -Na
5555
5656
$subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $virtualNetwork -Name $subnetName
5757
58-
$virtualNetwork | Set-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix $subnet.AddressPrefix -ServiceEndpoint "Microsoft.Storage" | Set-AzVirtualNetwork
58+
$virtualNetwork | Set-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix $subnet.AddressPrefix -ServiceEndpoint "Microsoft.Storage.Global" | Set-AzVirtualNetwork
5959
```
6060

6161
# [Azure CLI](#tab/azure-cli)
6262

6363
```azurecli
64-
az network vnet subnet update --resource-group "myresourcegroup" --vnet-name "myvnet" --name "mysubnet" --service-endpoints "Microsoft.Storage"
64+
az network vnet subnet update --resource-group "myresourcegroup" --vnet-name "myvnet" --name "mysubnet" --service-endpoints "Microsoft.Storage.Global"
6565
```
6666
---
6767

0 commit comments

Comments
 (0)