Skip to content

Commit ae2f057

Browse files
author
Larry Franks
committed
updates around prefix value
1 parent 8e5f7e7 commit ae2f057

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

articles/machine-learning/tutorial-create-secure-workspace-template.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -148,32 +148,29 @@ To run the Bicep template, use the following commands from the `machine-learning
148148
149149
---
150150
151-
1. To run the template, use the following command:
152-
153-
# [Azure CLI](#tab/cli)
151+
1. To run the template, use the following command. Replace the `prefix` with a unique prefix. The prefix will be used when creating Azure resources that are required for Azure Machine Learning. Replace the `securepassword` with a secure password for the jump box. The password is for the login account for the jump box (`azureadmin` in the examples below):
154152
155153
> [!TIP]
156-
> The `prefix` must be 5 or less characters.
154+
> The `prefix` must be 5 or less characters. It can't be entirely numeric or contain the following characters: `~ ! @ # $ % ^ & * ( ) = + _ [ ] { } \ | ; : . ' " , < > / ?`.
155+
156+
# [Azure CLI](#tab/cli)
157157
158158
```azurecli
159159
az deployment group create \
160160
--resource-group exampleRG \
161161
--template-file main.bicep \
162162
--parameters \
163-
prefix=myprefix \
163+
prefix=prefix \
164164
dsvmJumpboxUsername=azureadmin \
165165
dsvmJumpboxPassword=securepassword
166166
```
167167
# [Azure PowerShell](#tab/ps1)
168168
169-
> [!TIP]
170-
> The `prefix` must be 5 or less characters.
171-
172169
```azurepowershell
173170
$dsvmPassword = ConvertTo-SecureString "mysecurepassword" -AsPlainText -Force
174171
New-AzResourceGroupDeployment -ResourceGroupName exampleRG `
175172
-TemplateFile ./main.bicep `
176-
-prefix "myprefix" `
173+
-prefix "prefix" `
177174
-dsvmJumpboxUsername "azureadmin" `
178175
-dsvmJumpboxPassword $dsvmPassword
179176
```

0 commit comments

Comments
 (0)