We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39800fb + dbc8b1a commit 0244af6Copy full SHA for 0244af6
articles/azure-portal/quickstart-portal-dashboard-powershell.md
@@ -34,7 +34,23 @@ Set-AzContext -SubscriptionId 00000000-0000-0000-0000-000000000000
34
You'll be using several pieces of information repeatedly. Create variables to store the information.
35
36
```azurepowershell-interactive
37
-# Na
+# 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'
54
```
55
56
## Create a resource group
0 commit comments