Skip to content

Commit 94afb48

Browse files
committed
minor edits
1 parent 3340677 commit 94afb48

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/storage/elastic-san/elastic-san-create.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ Use one of these sets of sample code to create an Elastic SAN that uses locally
4646

4747
| Placeholder | Description |
4848
|----------------------------------|-------------|
49-
| `<ResourceGroupName>` | The name of the resource group where the resources are to be deployed. |
49+
| `<ResourceGroupName>` | The name of the resource group where the resources will be deployed. |
5050
| `<ElasticSanName>` | The name of the Elastic SAN to be created.<br>*The Elastic SAN name must be between 3 and 24 characters long. The name may only contain lowercase letters, numbers, hyphens and underscores, and must begin and end with a letter or a number. Each hyphen and underscore must be preceded and followed by an alphanumeric character.* |
5151
| `<ElasticSanVolumeGroupName>` | The name of the Elastic SAN Volume Group to be created. |
5252
| `<VolumeName>` | The name of the Elastic SAN Volume to be created. |
53-
| `<Location>` | The region where new resources will be created. |
54-
| `<Zone>` | The availability zone where the Elastic SAN will be created if it will use locally-redundant storage.<br> *Must be `1`, `2`, or `3`. Specify the same availability zone as the zone that will host your workload.* |
53+
| `<Location>` | The region where the new resources will be created. |
54+
| `<Zone>` | The availability zone where the Elastic SAN will be created.<br> *Specify the same availability zone as the zone that will host your workload.*<br>*Use only if the Elastic SAN will use locally-redundant storage.*<br> *Must be a zone supported in the target location such as `1`, `2`, or `3`.* |
5555

56-
The following command creates an Elastic SAN that uses locally-redundant storage.
56+
The following command creates an Elastic SAN that uses **locally-redundant** storage.
5757

5858
```azurepowershell
5959
# Define some variables.
@@ -68,7 +68,7 @@ $Zone = <Zone>
6868
New-AzElasticSAN -ResourceGroupName $RgName -Name $EsanName -AvailabilityZone $Zone -Location $Location -BaseSizeTib 100 -ExtendedCapacitySizeTiB 20 -SkuName Premium_LRS
6969
```
7070

71-
The following command creates an Elastic SAN that uses zone-redundant storage.
71+
The following command creates an Elastic SAN that uses **zone-redundant** storage.
7272

7373
```azurepowershell
7474
# Define some variables.
@@ -88,14 +88,14 @@ Use one of these sets of sample code to create an Elastic SAN that uses locally
8888

8989
| Placeholder | Description |
9090
|----------------------------------|-------------|
91-
| `<ResourceGroupName>` | The name of the resource group where the resources are to be deployed. |
91+
| `<ResourceGroupName>` | The name of the resource group where the resources will be deployed. |
9292
| `<ElasticSanName>` | The name of the Elastic SAN to be created.<br>*The Elastic SAN name must be between 3 and 24 characters long. The name may only contain lowercase letters, numbers, hyphens and underscores, and must begin and end with a letter or a number. Each hyphen and underscore must be preceded and followed by an alphanumeric character.* |
9393
| `<ElasticSanVolumeGroupName>` | The name of the Elastic SAN Volume Group to be created. |
9494
| `<VolumeName>` | The name of the Elastic SAN Volume to be created. |
95-
| `<Location>` | The region where new resources will be created. |
96-
| `<Zone>` | The availability zone where the Elastic SAN will be created if it will use locally-redundant storage.<br> *Must be `1`, `2`, or `3`. Specify the same availability zone as the zone that will host your workload.* |
95+
| `<Location>` | The region where the new resources will be created. |
96+
| `<Zone>` | The availability zone where the Elastic SAN will be created.<br> *Specify the same availability zone as the zone that will host your workload.*<br>*Use only if the Elastic SAN will use locally-redundant storage.*<br> *Must be a zone supported in the target location such as `1`, `2`, or `3`.* |
9797

98-
The following command creates an Elastic SAN that uses locally-redundant storage.
98+
The following command creates an Elastic SAN that uses **locally-redundant** storage.
9999

100100
```azurecli
101101
# Define some variables.
@@ -109,7 +109,7 @@ Zone=<Zone>
109109
az elastic-san create -n $EsanName -g $RgName -l $Location --base-size-tib 100 --extended-capacity-size-tib 20 --sku "{name:Premium_LRS,tier:Premium}" --availability-zones $Zone
110110
```
111111

112-
The following command creates an Elastic SAN that uses zone-redundant storage.
112+
The following command creates an Elastic SAN that uses **zone-redundant** storage.
113113

114114
```azurecli
115115
# Define some variables.

0 commit comments

Comments
 (0)