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-portal/quick-create-template.md
+20-22Lines changed: 20 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ title: Create an Azure portal dashboard by using an Azure Resource Manager templ
3
3
description: Learn how to create an Azure portal dashboard by using an Azure Resource Manager template.
4
4
ms.topic: quickstart
5
5
ms.custom: subject-armqs, mode-arm
6
-
ms.date: 01/13/2022
6
+
ms.date: 09/16/2022
7
7
---
8
8
9
9
# Quickstart: Create a dashboard in the Azure portal by using an ARM template
10
10
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.
@@ -19,35 +19,33 @@ If your environment meets the prerequisites and you're familiar with using ARM t
19
19
## Prerequisites
20
20
21
21
- 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.
22
24
23
-
## Create a virtual machine
25
+
1. In the Azure portal, select **Cloud Shell** from the global controls at the top of the page.
24
26
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.":::
26
28
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**.
28
30
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.":::
30
32
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.
32
34
33
-
:::image type="content" source="media/quick-create-template/powershell.png" alt-text="Screenshot showing the PowerShell option in Cloud Shell.":::
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-).
51
49
52
50
After the VM has been created, move on to the next section.
0 commit comments