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
Learn how to deploy an Azure Resource Manager template (ARM template) from your local machine. It takes about **8 minutes** to complete.
12
12
13
-
This tutorial is the first of a series. As you progress through the series, you modularize the template by creating a linked template, you store the linked template in a storage account, and secure the linked template by using SAS token, and you learn how to create a DevOps pipeline to deploy templates. This series focuses on template deployment. If you want to learn template development, see the [beginner tutorials](./template-tutorial-create-first-template.md).
13
+
This tutorial is the first of a series. As you progress through the series, you modularize the template by creating a linked template, store the linked template in a storage account, secure the linked template by using SAS token, and learn how to create a DevOps pipeline to deploy templates. This series focuses on template deployment. If you want to learn template development, see the [beginner tutorials](./template-tutorial-create-first-template.md).
14
14
15
15
## Get tools
16
16
17
-
Let's start by making sure you have the tools you need to deploy templates.
17
+
Make sure you have the tools you need to deploy templates.
18
18
19
19
### Command-line deployment
20
20
21
-
You need either Azure PowerShell or Azure CLI to deploy the template. For the installation instructions, see:
21
+
To deploy the template, you need either Azure PowerShell or Azure CLI. For the installation instructions, see:
-[Install Azure CLI on Windows](/cli/azure/install-azure-cli-windows)
25
25
-[Install Azure CLI on Linux](/cli/azure/install-azure-cli-linux)
26
26
-[Install Azure CLI on macOS](/cli/azure/install-azure-cli-macos)
27
27
28
-
After installing either Azure PowerShell or Azure CLI, make sure you sign in for the first time. For help, see [Sign in - PowerShell](/powershell/azure/install-az-ps#sign-in) or [Sign in - Azure CLI](/cli/azure/get-started-with-azure-cli#sign-in).
28
+
After installing either Azure PowerShell or Azure CLI, sign in for the first time. For help, see [Sign in - PowerShell](/powershell/azure/install-az-ps#sign-in) or [Sign in - Azure CLI](/cli/azure/get-started-with-azure-cli#sign-in).
29
29
30
30
### Editor (Optional)
31
31
32
-
Templates are JSON files. To review/edit templates, you need a good JSON editor. We recommend Visual Studio Code with the Resource Manager Tools extension. If you need to install these tools, see [Quickstart: Create ARM templates with Visual Studio Code](quickstart-create-templates-use-visual-studio-code.md).
32
+
Templates are JSON files. To review or edit templates, you need a good JSON editor. We recommend using Visual Studio Code with the Resource Manager Tools extension. If you need to install these tools, see [Quickstart: Create ARM templates with Visual Studio Code](quickstart-create-templates-use-visual-studio-code.md).
33
33
34
34
## Review template
35
35
36
-
The template deploys a storage account, app service plan, and web app. If you're interested in creating the template, you can go through [tutorial about Quickstart templates](template-tutorial-quickstart-template.md). However it's not required for completing this tutorial.
36
+
The template deploys a storage account, app service plan, and web app. If you're interested in creating the template, see [Quickstart templates tutorial](template-tutorial-quickstart-template.md). However, you don't need to create the template to complete this tutorial.
@@ -78,7 +78,7 @@ az account set --subscription [SubscriptionID/SubscriptionName]
78
78
79
79
## Create resource group
80
80
81
-
When you deploy a template, you specify a resource group that will contain the resources. Before running the deployment command, create the resource group with either Azure CLI or Azure PowerShell. Select the tabs in the following code section to choose between Azure PowerShell and Azure CLI. The CLI examples in this article are written for the Bash shell.
81
+
When you deploy a template, you specify a resource group for the resources. Before running the deployment command, create the resource group with either Azure CLI or Azure PowerShell. To choose between Azure PowerShell and Azure CLI, select the tabs in the following code section. The CLI examples in this article are written for the Bash shell.
82
82
83
83
# [PowerShell](#tab/azure-powershell)
84
84
@@ -149,7 +149,7 @@ To learn more about deploying template by using Azure CLI, see [Deploy resources
149
149
150
150
## Clean up resources
151
151
152
-
Clean up the resources you deployed by deleting the resource group.
152
+
To clean up the resources you deployed, delete the resource group.
153
153
154
154
1. From the Azure portal, select **Resource group** from the left menu.
155
155
2. Enter the resource group name in the **Filter by name** field.
@@ -158,7 +158,7 @@ Clean up the resources you deployed by deleting the resource group.
158
158
159
159
## Next steps
160
160
161
-
You learned how to deploy a local template. In the next tutorial, you separate the template into a main template and a linked template, and learn how to store and secure the linked template.
161
+
You learned how to deploy a local template. In the next tutorial, you separate the template into a main template and a linked template. You also learn how to store and secure the linked template.
162
162
163
163
> [!div class="nextstepaction"]
164
164
> [Deploy a linked template](./deployment-tutorial-linked-template.md)
0 commit comments