Skip to content

Commit e0c7bd9

Browse files
committed
revise the arm quickstart
1 parent 7d77ad8 commit e0c7bd9

File tree

1 file changed

+20
-22
lines changed

1 file changed

+20
-22
lines changed

articles/azure-portal/quick-create-template.md

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Create an Azure portal dashboard by using an Azure Resource Manager templ
33
description: Learn how to create an Azure portal dashboard by using an Azure Resource Manager template.
44
ms.topic: quickstart
55
ms.custom: subject-armqs, mode-arm
6-
ms.date: 01/13/2022
6+
ms.date: 09/16/2022
77
---
88

99
# Quickstart: Create a dashboard in the Azure portal by using an ARM template
1010

11-
A dashboard in the Azure portal is a focused and organized view of your cloud resources. This quickstart focuses on the process of deploying an Azure Resource Manager template (ARM template) to create a dashboard. The dashboard shows the performance of a virtual machine (VM), as well as some static information and links.
11+
A dashboard in the Azure portal is a focused and organized view of your cloud resources. This quickstart focuses on the process of deploying an Azure Resource Manager template (ARM template) to create a dashboard. The dashboard shows the performance of a virtual machine (VM), and some static information and links.
1212

1313
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
1414

@@ -19,35 +19,33 @@ If your environment meets the prerequisites and you're familiar with using ARM t
1919
## Prerequisites
2020

2121
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
22+
- [Azure PowerShell](/powershell/azure/install-az-ps) or [Azure CLI](/cli/azure/install-azure-cli).
23+
- A virtual machine. The dashboard you create in the next part of this quickstart requires an existing VM. Create a VM by following these steps.
2224

23-
## Create a virtual machine
25+
1. In the Azure portal, select **Cloud Shell** from the global controls at the top of the page.
2426

25-
The dashboard you create in the next part of this quickstart requires an existing VM. Create a VM by following these steps.
27+
:::image type="content" source="media/quick-create-template/cloud-shell.png" alt-text="Screenshot showing the Cloud Shell option in the Azure portal.":::
2628

27-
1. In the Azure portal, select **Cloud Shell** from the global controls at the top of the page.
29+
1. In the **Cloud Shell** window, select **PowerShell**.
2830

29-
:::image type="content" source="media/quick-create-template/cloud-shell.png" alt-text="Screenshot showing the Cloud Shell option in the Azure portal.":::
31+
:::image type="content" source="media/quick-create-template/powershell.png" alt-text="Screenshot showing the PowerShell option in Cloud Shell.":::
3032

31-
1. In the **Cloud Shell** window, select **PowerShell**.
33+
1. Copy the following command and enter it at the command prompt to create a resource group.
3234

33-
:::image type="content" source="media/quick-create-template/powershell.png" alt-text="Screenshot showing the PowerShell option in Cloud Shell.":::
35+
```powershell
36+
New-AzResourceGroup -Name SimpleWinVmResourceGroup -Location EastUS
37+
```
3438
35-
1. Copy the following command and enter it at the command prompt to create a resource group.
39+
1. Next, copy the following command and enter it at the command prompt to create a VM in your new resource group.
3640
37-
```powershell
38-
New-AzResourceGroup -Name SimpleWinVmResourceGroup -Location EastUS
39-
```
41+
```powershell
42+
New-AzVm `
43+
-ResourceGroupName "SimpleWinVmResourceGroup" `
44+
-Name "myVM1" `
45+
-Location "East US"
46+
```
4047
41-
1. Next, copy the following command and enter it at the command prompt to create a VM in your new resource group.
42-
43-
```powershell
44-
New-AzVm `
45-
-ResourceGroupName "SimpleWinVmResourceGroup" `
46-
-Name "myVM1" `
47-
-Location "East US"
48-
```
49-
50-
1. Enter a username and password for the VM. This is a new user name and password; it's not, for example, the account you use to sign in to Azure. For more information, see [username requirements](../virtual-machines/windows/faq.yml#what-are-the-username-requirements-when-creating-a-vm-) and [password requirements](../virtual-machines/windows/faq.yml#what-are-the-password-requirements-when-creating-a-vm-).
48+
1. Enter a username and password for the VM. This is a new user name and password; it's not, for example, the account you use to sign in to Azure. For more information, see [username requirements](../virtual-machines/windows/faq.yml#what-are-the-username-requirements-when-creating-a-vm-) and [password requirements](../virtual-machines/windows/faq.yml#what-are-the-password-requirements-when-creating-a-vm-).
5149
5250
After the VM has been created, move on to the next section.
5351

0 commit comments

Comments
 (0)