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/azure-resource-manager/templates/template-tutorial-create-first-template.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,10 @@ Okay, you're ready to start learning about templates.
51
51
## Create your first template
52
52
53
53
1. Open Visual Studio Code with the installed ARM processor Tools extension.
54
-
1. From the **File** menu, choose**New File** to create a new file.
55
-
1. From the **File** menu, choose**Save As**.
56
-
1. Name the file _azuredeploy_ and choose the _json_ file extension. The complete name of the file is _azuredeploy.json_.
57
-
1. Save the file to your workstation. Choose a path that's easy to remember because you need to provide that path later when deploying the template.
54
+
1. From the **File** menu, select**New File** to create a new file.
55
+
1. From the **File** menu, select**Save As**.
56
+
1. Name the file _azuredeploy_ and select the _json_ file extension. The complete name of the file is _azuredeploy.json_.
57
+
1. Save the file to your workstation. Select a path that's easy to remember because you need to provide that path later when deploying the template.
58
58
1. Copy and paste the following JSON into the file:
59
59
60
60
```json
@@ -67,7 +67,7 @@ Okay, you're ready to start learning about templates.
67
67
68
68
Here's what your Visual Studio Code environment looks like:
69
69
70
-

70
+
:::image type="content" source="./media/template-tutorial-create-first-template/resource-manager-visual-studio-code-first-template.png" alt-text="ARM template Visual Studio Code first template.":::
71
71
72
72
This template doesn't deploy any resources. We're starting with a blank template so you can get familiar with the steps to deploy a template while minimizing the chance of something going wrong.
73
73
@@ -85,7 +85,7 @@ Congratulations, you've created your first template.
85
85
86
86
To start working with Azure PowerShell or Azure CLI, sign in with your Azure credentials.
87
87
88
-
Choose the tabs in the following code sections to pick between Azure PowerShell and Azure CLI. The CLI examples in this article are written for the Bash shell.
88
+
Select the tabs in the following code sections to pick between Azure PowerShell and Azure CLI. The CLI examples in this article are written for the Bash shell.
89
89
90
90
# [PowerShell](#tab/azure-powershell)
91
91
@@ -193,19 +193,19 @@ You can verify the deployment by exploring the resource group from the Azure por
193
193
194
194
1. Sign in to the [Azure portal](https://portal.azure.com).
195
195
196
-
1. From the left menu, choose**Resource groups**.
196
+
1. From the left menu, select**Resource groups**.
197
197
198
198
1. Check the box to the left of **myResourceGroup** and then select **myResourceGroup**.
199
199
200
-
1.Choose the resource group you created in the earlier procedure. The default name is **myResourceGroup**. The resource group doesn't have any resources yet because you deployed a blank template.
200
+
1.Select the resource group you created in the earlier procedure. The default name is **myResourceGroup**. The resource group doesn't have any resources yet because you deployed a blank template.
201
201
202
-
1. Notice in the middle of the overview, in the **Essentials** section, the page displays the deployment status next to **Deployments**. Choose**1 Succeeded**.
202
+
1. Notice in the middle of the overview, in the **Essentials** section, the page displays the deployment status next to **Deployments**. select**1 Succeeded**.
1. You see a summary of the deployment. In this case, there's not a lot to see because no resources are deployed. Later in this series you might find it helpful to review the summary in the deployment history. Notice on the left you can see inputs, outputs, and the template that the deployment used.
211
211
@@ -217,10 +217,10 @@ If you're moving on to the next tutorial, you don't need to delete the resource
217
217
218
218
If you're stopping now, you might want to delete the resource group.
219
219
220
-
1. From the Azure portal, choose**Resource groups** from the left menu.
220
+
1. From the Azure portal, select**Resource groups** from the left menu.
221
221
2. Type the resource group name in the **Filter for any field...**.
222
222
3. Check the box next to **myResourceGroup** and select **myResourceGroup** or the resource group name you chose.
223
-
4.Choose**Delete resource group** from the top menu.
223
+
4.Select**Delete resource group** from the top menu.
0 commit comments