Skip to content

Commit 0244af6

Browse files
Merge pull request #210752 from JnHs/jh-portal-dbpsfix
revert accidental deletion
2 parents 39800fb + dbc8b1a commit 0244af6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

articles/azure-portal/quickstart-portal-dashboard-powershell.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,23 @@ Set-AzContext -SubscriptionId 00000000-0000-0000-0000-000000000000
3434
You'll be using several pieces of information repeatedly. Create variables to store the information.
3535

3636
```azurepowershell-interactive
37-
# Na
37+
# Name of resource group used throughout this article
38+
$resourceGroupName = 'myResourceGroup'
39+
40+
# Azure region
41+
$location = 'centralus'
42+
43+
# Dashboard Title
44+
$dashboardTitle = 'Simple VM Dashboard'
45+
46+
# Dashboard Name
47+
$dashboardName = $dashboardTitle -replace '\s'
48+
49+
# Your Azure Subscription ID
50+
$subscriptionID = (Get-AzContext).Subscription.Id
51+
52+
# Name of test VM
53+
$vmName = 'myVM1'
3854
```
3955

4056
## Create a resource group

0 commit comments

Comments
 (0)