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: articles/machine-learning/tutorial-create-secure-workspace-template.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,13 +41,13 @@ To view either Bicep or Terraform information, select the Bicep or Terraform tab
41
41
42
42
- Git installed on your development environment to clone the template repository. If you don't have the `git` command, you can install Git from [https://git-scm.com/](https://git-scm.com/).
43
43
44
-
-A Bash or Azure PowerShell command line.
44
+
-An Azure CLI or Azure PowerShell command line. The following examples use Azure CLI.
45
45
46
46
# [Bicep](#tab/bicep)
47
47
48
-
-To install the command-line tools, see[Set up Bicep development and deployment environments](/azure/azure-resource-manager/bicep/install).
48
+
-Either the Azure CLI or Azure PowerShell Bicep command-line tools installed according to[Set up Bicep development and deployment environments](/azure/azure-resource-manager/bicep/install).
49
49
50
-
- The Bicep template for this article is at [Azure Machine Learning end-to-end secure setup](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.machinelearningservices/machine-learning-end-to-end-secure). To clone the GitHub repo to your development environment and switch to the template directory, run the following commands:
50
+
- The GitHub repo containing the Bicep template [Azure Machine Learning end-to-end secure setup](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.machinelearningservices/machine-learning-end-to-end-secure), cloned locally and switched to by running the following commands:
-[Windows with Bash](/azure/developer/terraform/get-started-windows-bash)
63
63
-[Windows with Azure PowerShell](/azure/developer/terraform/get-started-windows-powershell)
64
64
65
-
- The Terraform template for this article is at [Azure Machine Learning workspace (moderately secure network set up)](https://github.com/Azure/terraform/tree/master/quickstart/201-machine-learning-moderately-secure). To clone the repo locally and switch to the template directory, run the following commands:
65
+
- The GitHub repo containing the Terraform template [Azure Machine Learning workspace (moderately secure network set up)](https://github.com/Azure/terraform/tree/master/quickstart/201-machine-learning-moderately-secure), cloned locally and switched to by running the following commands:
66
66
67
67
```bash
68
68
git clone https://github.com/Azure/terraform
@@ -101,7 +101,7 @@ The Bicep template is made up of the [main.bicep](https://github.com/Azure/azure
101
101
102
102
# [Terraform](#tab/terraform)
103
103
104
-
The template consists of multiple files. The following table describes what each file is responsible for:
104
+
The Terraform template consists of multiple files. The following table describes what each file is responsible for:
105
105
106
106
| File | Description |
107
107
| ----- | ----- |
@@ -125,46 +125,46 @@ The template consists of multiple files. The following table describes what each
125
125
126
126
# [Bicep](#tab/bicep)
127
127
128
-
To deploy the Bicep template, run the following commands from the *machine-learning-end-to-end-secure* directory where the *main.bicep* file is located.
128
+
To deploy the Bicep template, make sure you're in the *machine-learning-end-to-end-secure* directory where the *main.bicep* file is located, and run the following commands:
129
129
130
-
1. To create a new Azure resource group, run the following example command, replacing `exampleRG` with the resource group name and `eastus` with the Azure region you want to use:
130
+
1. To create a new Azure resource group, run the following example command, replacing `<myrgname>` with a resource group name and `<location>` with the Azure region you want to use.
131
131
132
-
-**Azure CLI:**
132
+
- Azure CLI:
133
133
134
134
```azurecli
135
-
az group create --name exampleRG --location eastus
135
+
az group create --name <myrgname> --location <location>
1. To deploy the template, use the following command, replacing `prefix` with a unique prefix to use when creating required Azure Machine Learning resources. Replace `dsvmpassword` with a secure password for the DSVM jump box sign-in account, `azureadmin` in the following examples.
144
+
1. To deploy the template, use the following command, replacing `<myrgname>` with the name of the resource group you created, and `<pref>` with a unique prefix to use when creating required resources. Replace `<mydsvmpassword>` with a secure password for the DSVM jump box sign-in account, which is `azureadmin` in the following examples.
145
145
146
146
> [!TIP]
147
147
> The `prefix` must be five or fewer characters, and can't be entirely numeric or contain the characters `~`, `!`, `@`, `#`, `$`, `%`, `^`, `&`, `*`, `(`, `)`, `=`, `+`, `_`, `[`, `]`, `{`, `}`, `\`, `|`, `;`, `:`, `.`, `'`, `"`, `,`, `<`, `>`, `/`, or `?`.
@@ -174,7 +174,7 @@ To deploy the Bicep template, run the following commands from the *machine-learn
174
174
175
175
# [Terraform](#tab/terraform)
176
176
177
-
To deploy the Terraform template, use the following commands from the *201-machine-learning-moderately-secure* directory where the template files are located.
177
+
To deploy the Terraform template, make sure you're in the *201-machine-learning-moderately-secure* directory where the template files are located, and run the following commands.
178
178
179
179
1. To initialize the directory for working with Terraform, use the following command:
0 commit comments