Skip to content

Commit f0c5fb6

Browse files
committed
edits
1 parent 9b109fc commit f0c5fb6

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/container-registry/container-registry-firewall-access-rules.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Firewall access rules
3-
description: Configure rules to access an Azure container registry from behind a firewall, by allowing access to ("whitelisting") REST API and storage endpoint domain names or service-specific IP address ranges.
3+
description: Configure rules to access an Azure container registry from behind a firewall, by allowing access to ("whitelisting") REST API and data endpoint domain names or service-specific IP address ranges.
44
ms.topic: article
55
ms.date: 04/28/2020
66
---
@@ -13,7 +13,7 @@ If instead you want to configure inbound network access to a container registry
1313

1414
## About registry endpoints
1515

16-
To pull or push images or other artifacts to an Azure container registry, a client such as a Docker daemon needs to interact over HTTPS with two distinct endpoints. You need to configure access rules for both endpoints.
16+
To pull or push images or other artifacts to an Azure container registry, a client such as a Docker daemon needs to interact over HTTPS with two distinct endpoints. For clients that need access from an external network, you need to configure access rules for both endpoints.
1717

1818
* **Registry REST API endpoint** - Authentication and registry management operations are handled through the registry's public REST API endpoint. This endpoint is the login server name of the registry, or an associated IP address range. Example: `myregistry.azurecr.io`
1919

@@ -24,18 +24,18 @@ If your registry is [geo-replicated](container-registry-geo-replication.md), a c
2424
## Allow access to REST and data endpoints
2525

2626
* **REST endpoint** - Allow access to the fully qualified registry login server name, such as `myregistry.azurecr.io`
27-
* **Storage (data) endpoint** - Allow access to all Azure blob storage accounts using the wildcard `*.blob.core.windows.net`. More securely, enable access to a [dedicated data endpoint](#configure-dedicated-data-endpoints-preview) (preview) in the region where the registry is located or replicated, such as `myregistry.westeurope.azurecr.io`. Configure data endpoint access rules for all required regions.
27+
* **Storage (data) endpoint** - Enable access to a [dedicated data endpoint](#configure-dedicated-data-endpoints-preview) (preview) in each region where the registry is located or replicated, such as `myregistry.westeurope.azurecr.io`. Alternatively, and less specifically, allow access to all Azure blob storage accounts using the wildcard `*.blob.core.windows.net`.
2828

2929
## Configure dedicated data endpoints (preview)
3030

3131
> [!WARNING]
3232
> If you previously configured client firewall access to the existing `*.blob.core.windows.net` endpoints, switching to dedicated data endpoints will impact client connectivity, causing pull failures. To ensure clients have consistent access, add the new data endpoint rules to the client firewall rules. Once completed, enable dedicated data endpoints for your registries using the Azure CLI or other tools.
3333
34-
### Enable data endpoint
34+
### Enable data endpoint (preview)
3535

36-
To enable data endpoints using the Azure CLI, use Azure CLI version 2.4.0 or higher. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
36+
A dedicated data endpoint is an optional feature of the **Premium** container registry service tier. For information about registry service tiers and limits, see [Azure Container Registry SKUs](container-registry-skus.md). To enable data endpoints using the Azure CLI, use Azure CLI version 2.4.0 or higher. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
3737

38-
The following [az acr update][az-acr-update] command enables data endpoints on a registry *myregistry*. For demonstration purpose, the registry is replicated in two regions:
38+
The following [az acr update][az-acr-update] command enables data endpoints on a registry *myregistry*. For demonstration purpose, assume that the registry is replicated in two regions:
3939

4040
```azurecli
4141
az acr update --name myregistry --data-endpoint-enabled
@@ -65,7 +65,7 @@ Output:
6565
}
6666
```
6767

68-
After you set up dedicated data endpoints for your registry, your client firewall access rules for the endpoints are enabled.
68+
After you set up dedicated data endpoints for your registry, you can enable client firewall access rules for the data endpoints. Enable data endpoint access rules for all required registry regions.
6969

7070
## Allow access by IP address range
7171

@@ -161,6 +161,8 @@ If you need to access Microsoft Container Registry (MCR) from behind a firewall,
161161

162162
* Learn more about [security groups](/azure/virtual-network/security-overview) in an Azure virtual network
163163

164+
* Learn more about [dedicated data endpoints](https://azure.microsoft.com/blog/azure-container-registry-mitigating-data-exfiltration-with-dedicated-data-endpoints/) for Azure Container Registry
165+
164166

165167

166168
<!-- IMAGES -->

0 commit comments

Comments
 (0)