Skip to content

Commit a951e8b

Browse files
Merge pull request #640 from Blackmist/297741-fresh
freshness
2 parents d7958c0 + f5b2a0f commit a951e8b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/machine-learning/how-to-configure-cli.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ ms.subservice: enterprise-readiness
88
ms.topic: how-to
99
author: Blackmist
1010
ms.author: larryfr
11-
ms.date: 01/08/2024
11+
ms.date: 10/03/2024
1212
ms.reviewer: balapv
1313
ms.custom: devx-track-azurecli, devplatv2
14+
# Customer intent: As an admin, I want to understand how to install the Azure CLI extension for Azure Machine Learning.
1415
---
1516

1617
# Install and set up the CLI (v2)
@@ -34,7 +35,7 @@ The new Machine Learning extension **requires Azure CLI version `>=2.38.0`**. En
3435

3536
If it isn't, [upgrade your Azure CLI](/cli/azure/update-azure-cli).
3637

37-
Check the Azure CLI extensions you've installed:
38+
Check the Azure CLI extensions that are installed:
3839

3940
:::code language="azurecli" source="~/azureml-examples-main/cli/misc.sh" id="az_extension_list":::
4041

@@ -64,7 +65,7 @@ For information on how to install on other Linux distributions, visit [Install t
6465

6566
## Set up
6667

67-
Login:
68+
Sign in:
6869

6970
:::code language="azurecli" source="~/azureml-examples-main/cli/misc.sh" id="az_login":::
7071

@@ -77,7 +78,7 @@ Optionally, setup common variables in your shell for usage in subsequent command
7778
:::code language="azurecli" source="~/azureml-examples-main/setup/setup-repo/azure-github.sh" id="set_variables":::
7879

7980
> [!WARNING]
80-
> This uses Bash syntax for setting variables -- adjust as needed for your shell. You can also replace the values in commands below inline rather than using variables.
81+
> This uses Bash syntax for setting variables. Adjust as needed for your shell. You can also replace the values in commands in the following examples inline rather than using variables.
8182
8283
If it doesn't already exist, you can create the Azure resource group:
8384

@@ -105,20 +106,20 @@ You can show your current defaults using `--list-defaults/-l`:
105106

106107
The `ml` CLI extension (sometimes called 'CLI v2') for Azure Machine Learning sends operational data (YAML parameters and metadata) over the public internet. All the `ml` CLI extension commands communicate with the Azure Resource Manager. This communication is secured using HTTPS/TLS 1.2.
107108

108-
Data in a data store that is secured in a virtual network is _not_ sent over the public internet. For example, if your training data is located in the default storage account for the workspace, and the storage account is in a virtual network.
109+
Data in a data store that is secured in a virtual network isn't_ sent over the public internet. For example, if your training data is located in the default storage account for the workspace, and the storage account is in a virtual network.
109110

110111
> [!NOTE]
111112
> With the previous extension (`azure-cli-ml`, sometimes called 'CLI v1'), only some of the commands communicate with the Azure Resource Manager. Specifically, commands that create, update, delete, list, or show Azure resources. Operations such as submitting a training job communicate directly with the Azure Machine Learning workspace. If your workspace is [secured with a private endpoint](how-to-configure-private-link.md), that is enough to secure commands provided by the `azure-cli-ml` extension.
112113
113114
# [Public workspace](#tab/public)
114115

115-
If your Azure Machine Learning workspace is public (that is, not behind a virtual network), then there is no additional configuration required. Communications are secured using HTTPS/TLS 1.2
116+
If your Azure Machine Learning workspace is public (that is, not behind a virtual network), then there's no extra configuration required. Communications are secured using HTTPS/TLS 1.2
116117

117118
# [Private workspace](#tab/private)
118119

119120
If your Azure Machine Learning workspace uses a private endpoint and virtual network, choose one of the following configurations to use:
120121

121-
* If you are __OK__ with the CLI v2 communication over the public internet, use the following `--public-network-access` parameter for the `az ml workspace update` command to enable public network access. For example, the following command updates a workspace for public network access:
122+
* If you're __OK__ with the CLI v2 communication over the public internet, use the following `--public-network-access` parameter for the `az ml workspace update` command to enable public network access. For example, the following command updates a workspace for public network access:
122123

123124
```azurecli
124125
az ml workspace update --name myworkspace --public-network-access enabled

0 commit comments

Comments
 (0)