You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/files/storage-how-to-create-file-share.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -216,13 +216,13 @@ To create a provisioned v2 storage account using Azure CLI, use the `az storage
216
216
To create a storage account for provisioned v2 file shares, use the following command. Remember to replace the values for the variables `resourceGroupName`, `storageAccountName`, `region`, `storageAccountKind`, and `storageAccountSku` with the desired values for your storage account deployment.
217
217
218
218
```bash
219
-
$resourceGroupName="<my-resource-group>"
220
-
$storageAccountName="<my-storage-account-name>"
221
-
$region="<my-region>"
222
-
$storageAccountKind="FileStorage"
219
+
resourceGroupName="<my-resource-group>"
220
+
storageAccountName="<my-storage-account-name>"
221
+
region="<my-region>"
222
+
storageAccountKind="FileStorage"
223
223
224
224
# Valid SKUs for provisioned v2 HDD file share are 'StandardV2_LRS' (HDD Local Pv2), 'StandardV2_GRS' (HDD Geo Pv2), 'StandardV2_ZRS' (HDD Zone Pv2), 'StandardV2_GZRS' (HDD GeoZone Pv2).
@@ -324,15 +324,15 @@ You can create an Provisioned v2 Azure file share with [`az storage share-rm cre
324
324
To create a provisioned v2 file share, use the following command. Remember to replace the values for the variables `shareName`, `provisionedStorageGib` with the desired selections for your file share deployment.
325
325
326
326
```bash
327
-
$shareName="<file-share>"
327
+
shareName="<file-share>"
328
328
329
329
# The provisioned storage size of the share in GiB. Valid range is 32 to
330
330
# 262,144.
331
-
$provisionedStorageGib = 1024
331
+
provisionedStorageGib=1024
332
332
333
333
# If you do not specify on the ProvisionedBandwidthMibps and ProvisionedIops, the deployment will use the recommended provisioning.
0 commit comments