Skip to content

Commit b06a020

Browse files
committed
[Azure portal] add bicep quickstart
1 parent bb1262b commit b06a020

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

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

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 09/15/2022
88

99
# Quickstart: Create a dashboard in the Azure portal by using a Bicep file
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 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.
1212

1313
[!INCLUDE [About Bicep](../../includes/resource-manager-quickstart-bicep-introduction.md)]
1414

@@ -30,7 +30,7 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
3030
# [CLI](#tab/CLI)
3131

3232
```azurecli
33-
$resourceGroupName = '<resource-group-name>'
33+
$resourceGroupName = 'SimpleWinVmResourceGroup'
3434
$location = 'eastus'
3535
$adminUserName = '<admin-user-name>'
3636
$adminPassword = '<admin-password>'
@@ -46,7 +46,7 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
4646
# [PowerShell](#tab/PowerShell)
4747
4848
```azurepowershell
49-
$resourceGroupName = '<resource-group-name>'
49+
$resourceGroupName = 'SimpleWinVmResourceGroup'
5050
$location = 'eastus'
5151
$adminUserName = '<admin-user-name>'
5252
$adminPassword = '<admin-password>'
@@ -63,6 +63,14 @@ The Bicep file used in this quickstart is from [Azure Quickstart Templates](http
6363
6464
---
6565
66+
Replace the following values in the script:
67+
68+
- &lt;admin-user-name>: specify an administrator username.
69+
- &lt;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+
6674
When the deployment finishes, you should see a message indicating the deployment succeeded.
6775
6876
## Review deployed resources

0 commit comments

Comments
 (0)