Skip to content

Commit 90e9e7c

Browse files
committed
final tweaks
1 parent 20a9325 commit 90e9e7c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

azure-local/manage/manage-data-disks.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ Before you begin, make sure to complete the following prerequisites:
2626

2727
Download an Azure managed disk as follows:
2828

29-
1. Set parameters for your subscription, resource group, disk name, and custom location. Replace the parameters in `< >` with the appropriate values:
29+
1. Set parameters for `subscription`, `resource-group`, `name`, and `custom-location`. Replace the parameters in `< >` with the appropriate values:
3030

3131
```azurecli
3232
$subscription = "<Subscription ID>"
3333
$resource-group = "<Resource group>"
3434
$name = "<Data disk name>"
35-
$customLocation = "<Custom location resource ID>"
35+
$custom-location = "<Custom location resource ID>"
3636
```
3737
3838
1. Generate a SAS URL of the disk using Azure CLI:
@@ -44,19 +44,19 @@ Download an Azure managed disk as follows:
4444
1. Once the SAS URL is generated, use the following command to download it to your Azure Local:
4545
4646
```azurecli
47-
az stack-hci-vm disk create -resource-group $resource-group --disk-file-format vhd --custom-location $customLocation --download-url $download-url --name $name
47+
az stack-hci-vm disk create -resource-group $resource-group --disk-file-format vhd --custom-location $custom-location --download-url $download-url --name $name
4848
```
4949
5050
The parameters are described in the following table:
5151
5252
| Parameter | Description |
5353
| --- | --- |
54-
| subscription | Subscription associated with your Azure Local.
55-
| resource-group | Resource group for Azure Local that you associate with this image. |
56-
| name | Name of the data disk for Azure Local. |
57-
| customLocation | Resource ID of the custom location for Azure Local. |
58-
| disk-file-format | File format of the data disk. This can be `vhd` or `vhdx`. |
59-
| download-url | SAS URL of the Azure managed disk.|
54+
| `subscription` | Subscription associated with your Azure Local.
55+
| `resource-group` | Resource group for Azure Local that you associate with this image. |
56+
| `name` | Name of the data disk for Azure Local. |
57+
| `custom-location` | Resource ID of the custom location for Azure Local. |
58+
| `disk-file-format` | File format of the data disk. This can be `vhd` or `vhdx`. |
59+
| `download-url` | SAS URL of the Azure managed disk.|
6060
6161
Here is an example output:
6262

0 commit comments

Comments
 (0)