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-bicep.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.date: 09/15/2022
8
8
9
9
# Quickstart: Create a dashboard in the Azure portal by using a Bicep file
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 a Bicep file 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 a Bicep file to create a dashboard. The dashboard shows the performance of a virtual machine (VM), and some static information and links.
@@ -30,7 +30,7 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
30
30
# [CLI](#tab/CLI)
31
31
32
32
```azurecli
33
-
$resourceGroupName = '<resource-group-name>'
33
+
$resourceGroupName = 'SimpleWinVmResourceGroup'
34
34
$location = 'eastus'
35
35
$adminUserName = '<admin-user-name>'
36
36
$adminPassword = '<admin-password>'
@@ -46,7 +46,7 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
46
46
# [PowerShell](#tab/PowerShell)
47
47
48
48
```azurepowershell
49
-
$resourceGroupName = '<resource-group-name>'
49
+
$resourceGroupName = 'SimpleWinVmResourceGroup'
50
50
$location = 'eastus'
51
51
$adminUserName = '<admin-user-name>'
52
52
$adminPassword = '<admin-password>'
@@ -63,6 +63,14 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
63
63
64
64
---
65
65
66
+
Replace the following values in the script:
67
+
68
+
- <admin-user-name>: specify an administrator username.
69
+
- <admin-password>: specify an administrator password.
70
+
- $lt;dns-label-prefix>: specify a DNS prefix.
71
+
72
+
The Bicep file requires an existing virtual machine. Before deploying the Bicep file, the script deploys an ARM template located at *https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.portal/azure-portal-dashboard/prereqs/prereq.azuredeploy.json* for creating a virtual machine. The virtual machine name is hard-coded as **SimpleWinVM** in the ARM template.
73
+
66
74
When the deployment finishes, you should see a message indicating the deployment succeeded.
0 commit comments