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
Copy file name to clipboardExpand all lines: learn-pr/advocates/restrict-azure-machine-learning-workspace-network/includes/2-managed-network-isolation.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,5 +2,3 @@ Using a managed virtual network provides an easier configuration for network iso
2
2
3
3
-**Allow internet outbound mode**: Use this option if you want to allow your machine learning engineers access the internet freely. You can create other private endpoint outbound rules to let them access your private resources on Azure.
4
4
-**Allow only approved outbound mode**: Use this option if you want to minimize data exfiltration risk and control what your machine learning engineers can access. You can control outbound rules using private endpoint, service tag, and FQDN.
5
-
6
-

Copy file name to clipboardExpand all lines: learn-pr/advocates/restrict-azure-machine-learning-workspace-network/includes/5-configure-managed-virtual-network-approved-outbound.md
+27-27Lines changed: 27 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,39 +2,39 @@ To configure a managed virtual network that allows only approved outbound commun
2
2
3
3
1. On Azure Cloud Shell, run the following command to update an existing Azure Machine Learning workspace:
4
4
5
-
```azurecli
6
-
az ml workspace update --name ws --resource-group rg --managed-network allow_only_approved_outbound
7
-
```
5
+
```azurecli
6
+
az ml workspace update --name ws --resource-group rg --managed-network allow_only_approved_outbound
7
+
```
8
8
9
9
1. Next, you need a YAML file to configure the rules for the approved destinations. An example with sample rules for service tag, FQDN, and private endpoint is as follows:
1. After configuring the file, you can update the workspace with the command:
34
34
35
-
```azurecli
36
-
az ml workspace update --file workspace.yaml --name ws --resource-group MyGroup
37
-
```
35
+
```azurecli
36
+
az ml workspace update --file workspace.yaml --name ws --resource-group MyGroup
37
+
```
38
38
39
39
When the isolation mode of a managed virtual network is set to *Allow internet outbound*, Azure automatically creates private endpoint outbound rules. These rules are required for the workspace and its associated resources, such as Key Vault, Storage Account, Container Registry, and Azure Machine Learning workspace, when public network access is disabled.
0 commit comments