Skip to content

Commit 1bec3eb

Browse files
committed
refresh the vscode quickstart article
1 parent 8e382cc commit 1bec3eb

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

articles/azure-resource-manager/templates/quickstart-create-templates-use-visual-studio-code.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create template - Visual Studio Code
33
description: Use Visual Studio Code and the Azure Resource Manager tools extension to work on Resource Manager templates.
44
author: mumian
5-
ms.date: 03/04/2019
5+
ms.date: 04/13/2020
66
ms.topic: quickstart
77
ms.author: jgao
88

@@ -16,7 +16,7 @@ Learn how to use Visual Studio code and the Azure Resource Manager Tools extensi
1616

1717
In this quickstart, you deploy a storage account:
1818

19-
![resource manager template quickstart visual studio code diagram](./media/quickstart-create-templates-use-visual-studio-code/resource-manager-template-quickstart-vscode-diagram.png)
19+
![Resource Manager template quickstart visual studio code diagram](./media/quickstart-create-templates-use-visual-studio-code/resource-manager-template-quickstart-vscode-diagram.png)
2020

2121
If you don't have an Azure subscription, [create a free account](https://azure.microsoft.com/free/) before you begin.
2222

@@ -84,33 +84,31 @@ To experience how to edit a template using Visual Studio Code, you add one more
8484

8585
## Deploy the template
8686

87-
There are many methods for deploying templates. Azure Cloud shell is used in this quickstart. The cloud shell supports both Azure CLI and Azure PowerShell. Use the tab selector to choose between CLI and PowerShell.
87+
There are many methods for deploying templates. Azure Cloud Shell is used in this quickstart. The Cloud Shell supports both Azure CLI and Azure PowerShell. Use the tab selector to choose between CLI and PowerShell.
8888

89-
[!INCLUDE [updated-for-az](../../../includes/updated-for-az.md)]
90-
91-
1. Sign in to the [Azure Cloud shell](https://shell.azure.com)
89+
1. Sign in to the [Azure Cloud Shell](https://shell.azure.com)
9290

9391
2. Choose your preferred environment by selecting either **PowerShell** or **Bash**(CLI) on the upper left corner. Restarting the shell is required when you switch.
9492

9593
# [CLI](#tab/CLI)
9694

97-
![Azure portal Cloud shell CLI](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-choose-cli.png)
95+
![Azure portal Cloud Shell CLI](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-choose-cli.png)
9896

9997
# [PowerShell](#tab/PowerShell)
10098

101-
![Azure portal Cloud shell PowerShell](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-choose-powershell.png)
99+
![Azure portal Cloud Shell PowerShell](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-choose-powershell.png)
102100

103101
---
104102

105103
3. Select **Upload/download files**, and then select **Upload**.
106104

107105
# [CLI](#tab/CLI)
108106

109-
![Azure portal Cloud shell upload file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-upload-file.png)
107+
![Azure portal Cloud Shell upload file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-upload-file.png)
110108

111109
# [PowerShell](#tab/PowerShell)
112110

113-
![Azure portal Cloud shell upload file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-upload-file-powershell.png)
111+
![Azure portal Cloud Shell upload file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-upload-file-powershell.png)
114112

115113
---
116114

@@ -120,14 +118,14 @@ There are many methods for deploying templates. Azure Cloud shell is used in thi
120118

121119
# [CLI](#tab/CLI)
122120

123-
![Azure portal Cloud shell list file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-list-file.png)
121+
![Azure portal Cloud Shell list file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-list-file.png)
124122

125123
# [PowerShell](#tab/PowerShell)
126124

127-
![Azure portal Cloud shell list file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-list-file-powershell.png)
125+
![Azure portal Cloud Shell list file](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-list-file-powershell.png)
128126

129127
---
130-
4. From the Cloud shell, run the following commands. Select the tab to show the PowerShell code or the CLI code.
128+
4. From the Cloud Shell, run the following commands. Select the tab to show the PowerShell code or the CLI code. Provide a project name, which is used to generate a resource group name. The resource group name is the project name with **rg** appended.
131129

132130
# [CLI](#tab/CLI)
133131

@@ -160,11 +158,11 @@ There are many methods for deploying templates. Azure Cloud shell is used in thi
160158

161159
# [CLI](#tab/CLI)
162160

163-
![Azure portal Cloud shell deploy template](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-deploy-template.png)
161+
![Azure portal Cloud Shell deploy template](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-deploy-template.png)
164162

165163
# [PowerShell](#tab/PowerShell)
166164

167-
![Azure portal Cloud shell deploy template](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-deploy-template-powershell.png)
165+
![Azure portal Cloud Shell deploy template](./media/quickstart-create-templates-use-visual-studio-code/azure-portal-cloud-shell-deploy-template-powershell.png)
168166

169167
---
170168

@@ -200,12 +198,12 @@ When the Azure resources are no longer needed, clean up the resources you deploy
200198

201199
1. From the Azure portal, select **Resource group** from the left menu.
202200
2. Enter the resource group name in the **Filter by name** field.
203-
3. Select the resource group name. You shall see a total of six resources in the resource group.
201+
3. Select the resource group name. The resource group name is the project name with **rg** appended. You shall see a storage account resource in the resource group.
204202
4. Select **Delete resource group** from the top menu.
205203

206204
## Next steps
207205

208-
The main focus of this quickstart is to use Visual Studio Code to edit an existing template from Azure Quickstart templates. You also learned how to deploy the template using either CLI or PowerShell from the Azure Cloud shell. The templates from Azure Quickstart templates might not give you everything you need. To learn more about template development, see our new beginner tutorial series:
206+
The main focus of this quickstart is to use Visual Studio Code to edit an existing template from Azure Quickstart templates. You also learned how to deploy the template using either CLI or PowerShell from the Azure Cloud Shell. The templates from Azure Quickstart templates might not give you everything you need. To learn more about template development, see our new beginner tutorial series:
209207

210208
> [!div class="nextstepaction"]
211209
> [Beginner tutorials](./template-tutorial-create-first-template.md)

0 commit comments

Comments
 (0)