You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,7 +31,7 @@ In your virtual network, enable the Storage service endpoint on your subnet. Thi
31
31
> Configuration of rules that grant access to subnets in virtual networks that are a part of a different Azure Active Directory tenant are currently only supported through PowerShell, CLI and REST APIs. These rules cannot be configured through the Azure portal, though they may be viewed in the portal.
32
32
33
33
# [Portal](#tab/azure-portal)
34
-
34
+
> |
35
35
1. Navigate to your virtual network and select **Service Endpoints**.
36
36
1. Select **+ Add** and for **Service** select **Microsoft.Storage**.
37
37
1. Select any policies you like, and the subnet you deploy your Elastic SAN into and select **Add**.
By default, service endpoints work between virtual networks and service instances in the same Azure region. When using service endpoints with Azure Storage, service endpoints also work between virtual networks and service instances in a [paired region](../../availability-zones/cross-region-replication-azure.md). If you want to use a service endpoint to grant access to virtual networks in other regions, you must register the `AllowGlobalTagsForStorage` feature in the subscription of the virtual network. This capability is currently in public preview.
65
-
66
-
Service endpoints allow continuity during a regional failover. When planning for disaster recovery during a regional outage, you should create the virtual networks in the paired region in advance. Enable service endpoints for Azure Storage, with network rules granting access from these alternative virtual networks. Then apply these rules to your zone-redundant SANs.
67
-
68
-
## Enabling access to virtual networks in other regions Preview
69
-
70
-
>
71
-
> [!IMPORTANT]
72
-
> This capability is currently in PREVIEW.
73
-
>
74
-
> See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
75
-
76
-
To enable access from a virtual network that is located in another region over service endpoints, register the `AllowGlobalTagsForStorage` feature in the subscription of the virtual network.
77
-
78
-
> [!NOTE]
79
-
> For updating the existing service endpoints to access a volume group in another region, perform an [update subnet](/cli/azure/network/vnet/subnet#az-network-vnet-subnet-update) operation on the subnet after registering the subscription with the `AllowGlobalTagsForStorage` feature. Similarly, to go back to the old configuration, perform an [update subnet](/cli/azure/network/vnet/subnet#az-network-vnet-subnet-update) operation after deregistering the subscription with the `AllowGlobalTagsForStorage` feature.
80
-
81
-
82
-
### [Portal](#tab/azure-portal)
83
-
84
-
During the preview you must use either PowerShell or the Azure CLI to enable this feature.
85
-
86
-
### [PowerShell](#tab/azure-powershell)
87
-
88
-
- Open a Windows PowerShell command window.
89
-
90
-
- Sign in to your Azure subscription with the `Connect-AzAccount` command and follow the on-screen directions.
62
+
### Available virtual network regions
91
63
92
-
```powershell
93
-
Connect-AzAccount
94
-
```
64
+
Service endpoints for Azure Storage work between virtual networks and service instances in any region.
95
65
96
-
- If your identity is associated with more than one subscription, then set your active subscription to the subscription of the virtual network.
66
+
Configuring service endpoints between virtual networks and service instances in a [paired region](../../best-practices-availability-paired-regions.md) can be an important part of your disaster recovery plan. Service endpoints allow continuity during a regional failover and access to read-only geo-redundant storage (RA-GRS) instances. Network rules that grant access from a virtual network to a storage account also grant access to any RA-GRS instance.
When planning for disaster recovery during a regional outage, you should create the VNets in the paired region in advance. Enable service endpoints for Azure Storage, with network rules granting access from these alternative virtual networks. Then apply these rules to your geo-redundant storage accounts.
102
69
103
-
Replace the `<subscription-id>` placeholder value with the ID of your subscription.
70
+
#### Azure Storage global service endpoints
104
71
105
-
- Register the `AllowGlobalTagsForStorage` feature by using the [Register-AzProviderFeature](/powershell/module/az.resources/register-azproviderfeature) command.
72
+
Global service endpoints for Azure became generally available in April of 2023. With global service endpoints, subnets will no longer use a public IP address to communicate with any storage account. Instead, all the traffic from subnets to storage accounts will use a private IP address as a source IP. As a result, any storage accounts that use IP network rules to permit traffic from those subnets will no longer have an effect.
- Open the [Azure Cloud Shell](../../cloud-shell/overview.md), or if you've [installed](/cli/azure/install-azure-cli) the Azure CLI locally, open a command console application such as Windows PowerShell.
123
-
124
-
- If your identity is associated with more than one subscription, then set your active subscription to subscription of the virtual network.
125
-
126
-
```azurecli-interactive
127
-
az account set --subscription <subscription-id>
128
-
```
129
-
130
-
Replace the `<subscription-id>` placeholder value with the ID of your subscription.
131
-
132
-
- Register the `AllowGlobalTagsForStorage` feature by using the [az feature register](/cli/azure/feature#az-feature-register) command.
133
-
134
-
```azurecli
135
-
az feature register --namespace Microsoft.Network --name AllowGlobalTagsForStorage
136
-
```
137
-
138
-
> [!NOTE]
139
-
> The registration process might not complete immediately. Make sure to verify that the feature is registered before using it.
140
-
141
-
- To verify that the registration is complete, use the [az feature](/cli/azure/feature#az-feature-show) command.
142
-
143
-
```azurecli
144
-
az feature show --namespace Microsoft.Network --name AllowGlobalTagsForStorage
145
-
```
146
-
147
-
---
74
+
To use global service endpoints, it might be necessary to delete existing **Microsoft.Storage** endpoints and recreate them as global (**Microsoft.Storage.Global**).
148
75
149
76
## Managing virtual network rules
150
77
@@ -173,7 +100,7 @@ You can manage virtual network rules for volume groups through the Azure portal,
173
100
- Enable service endpoint for Azure Storage on an existing virtual network and subnet.
0 commit comments