Skip to content

Commit 58ac478

Browse files
committed
fixing image
1 parent feecf12 commit 58ac478

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed
Loading

articles/azure-resource-manager/templates/template-tutorial-create-first-template.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ Okay, you're ready to start learning about templates.
5151
## Create your first template
5252

5353
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.
5858
1. Copy and paste the following JSON into the file:
5959

6060
```json
@@ -67,7 +67,7 @@ Okay, you're ready to start learning about templates.
6767

6868
Here's what your Visual Studio Code environment looks like:
6969

70-
![ARM template Visual Studio Code first template](./media/template-tutorial-create-first-template/resource-manager-visual-studio-code-first-template.png)
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.":::
7171

7272
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.
7373

@@ -85,7 +85,7 @@ Congratulations, you've created your first template.
8585

8686
To start working with Azure PowerShell or Azure CLI, sign in with your Azure credentials.
8787

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.
8989

9090
# [PowerShell](#tab/azure-powershell)
9191

@@ -193,19 +193,19 @@ You can verify the deployment by exploring the resource group from the Azure por
193193

194194
1. Sign in to the [Azure portal](https://portal.azure.com).
195195

196-
1. From the left menu, choose **Resource groups**.
196+
1. From the left menu, select **Resource groups**.
197197

198198
1. Check the box to the left of **myResourceGroup** and then select **myResourceGroup**.
199199

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.
201201

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**.
203203

204204
![See deployment status](./media/template-tutorial-create-first-template/deployment-status.png)
205205

206206
1. You see a history of deployment for the resource group. Check the box to the left of **blanktemplate** and then select **blanktemplate**.
207207

208-
![Choose deployment](./media/template-tutorial-create-first-template/select-from-deployment-history.png)
208+
![Select deployment](./media/template-tutorial-create-first-template/select-from-deployment-history.png)
209209

210210
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.
211211

@@ -217,10 +217,10 @@ If you're moving on to the next tutorial, you don't need to delete the resource
217217

218218
If you're stopping now, you might want to delete the resource group.
219219

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.
221221
2. Type the resource group name in the **Filter for any field...**.
222222
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.
224224

225225
![See deletion](./media/template-tutorial-create-first-template/resource-deletion.png)
226226

0 commit comments

Comments
 (0)