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
It is helpful to get some basic understanding of the template before customizing it.
74
+
It is helpful to review the template reference before customizing a template.
75
75
76
76
1. Expand the first resource. It is a storage account. Compare the resource definition to the [template reference](/azure/templates/Microsoft.Storage/storageAccounts).
77
77
@@ -125,11 +125,12 @@ There are many methods for deploying templates. In this tutorial, you use Cloud
125
125
1. From the Cloud shell, run the following PowerShell commands. To increase security, use a generated password for the virtual machine administrator account. See [Prerequisites](#prerequisites).
126
126
127
127
```azurepowershell
128
-
$resourceGroupName = Read-Host -Prompt "Enter the Resource Group name"
128
+
$projectName = Read-Host -Prompt "Enter a project name that is used to generate resource group name"
129
129
$location = Read-Host -Prompt "Enter the location (i.e. centralus)"
130
130
$adminUsername = Read-Host -Prompt "Enter the virtual machine admin username"
131
131
$adminPassword = Read-Host -Prompt "Enter the admin password" -AsSecureString
132
132
$dnsLabelPrefix = Read-Host -Prompt "Enter the DNS label prefix"
0 commit comments