Skip to content

Commit df3d917

Browse files
authored
Merge pull request #102226 from Blackmist/fixingvnet
changes to use global tags and updated image
2 parents 091a98a + 0c69e7c commit df3d917

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

articles/machine-learning/how-to-enable-virtual-network.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,14 @@ If you don't want to use the default outbound rules and you do want to limit the
176176

177177
- Deny outbound internet connection by using the NSG rules.
178178

179-
- Limit outbound traffic to the following items:
180-
- Azure Storage, by using __Service Tag__ of __Storage.Region_Name__ (for example, Storage.EastUS)
181-
- Azure Container Registry, by using __Service Tag__ of __AzureContainerRegistry.Region_Name__ (for example, AzureContainerRegistry.EastUS)
179+
- For a __compute instance__ or a __compute cluster__, limit outbound traffic to the following items:
180+
- Azure Storage, by using __Service Tag__ of __Storage__
181+
- Azure Container Registry, by using __Service Tag__ of __AzureContainerRegistry__
182182
- Azure Machine Learning, by using __Service Tag__ of __AzureMachineLearning__
183-
- In case of compute instance, Azure Cloud, by using __Service Tag__ of __AzureResourceManager__
183+
184+
- For a __compute instance__, also add the follow items:
185+
- Azure Resource Manager, by using __Service Tag__ of __AzureResourceManager__
186+
- Azure Active Directory, by using __Service Tag__ of __AzureActiveDirectory__
184187

185188
The NSG rule configuration in the Azure portal is shown in the following image:
186189

@@ -203,12 +206,12 @@ The NSG rule configuration in the Azure portal is shown in the following image:
203206
> run_config.environment.python.user_managed_dependencies = True
204207
> ```
205208
>
206-
> Estimator training__
209+
> __Estimator training__
207210
> ```python
208-
> est = Estimator(source_directory='.',
209-
> script_params=script_params,
210-
> compute_target='local',
211-
> entry_script='dummy_train.py',
211+
> est = Estimator(source_directory='.',
212+
> script_params=script_params,
213+
> compute_target='local',
214+
> entry_script='dummy_train.py',
212215
> user_managed=True)
213216
> run = exp.submit(est)
214217
> ```
10.7 KB
Loading

0 commit comments

Comments
 (0)