File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
articles/machine-learning Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -83,12 +83,19 @@ Use the following commands to create these resources and retrieve the Azure Reso
83
83
84
84
1. Create the Azure Storage Account:
85
85
86
- ```azurepowershell-interactive
87
- $Storage = 'MyStorage'
88
- New-AzStorageAccount -Name $Storage -ResourceGroupName $ResourceGroup -Location $Location `
89
- -SkuName Standard_LRS -Kind StorageV2
90
- $storeid = (Get-AzResource -Name $Storage -ResourceGroupName $ResourceGroup).ResourceId
91
- ```
86
+ ```azurepowershell-interactive
87
+ $Storage = 'MyStorage'
88
+
89
+ $storageParams = @{
90
+ Name = $Storage
91
+ ResourceGroupName = $ResourceGroup
92
+ Location = $Location
93
+ SkuName = 'Standard_LRS'
94
+ Kind = 'StorageV2'
95
+ }
96
+ New-AzStorageAccount @storageParams
97
+
98
+ $storeid = (Get-AzResource -Name $Storage -ResourceGroupName $ResourceGroup).ResourceId
92
99
93
100
## Create a workspace
94
101
You can’t perform that action at this time.
0 commit comments