Skip to content

Commit 8afd18d

Browse files
Merge pull request #279206 from tamram/patch-80
Update storage-account-create.md - add min TLS version to create calls
2 parents 8ea0933 + 89f61d9 commit 8afd18d

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

articles/storage/common/storage-account-create.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: akashdubey-ms
77

88
ms.service: azure-storage
99
ms.topic: how-to
10-
ms.date: 05/15/2024
10+
ms.date: 06/25/2024
1111
ms.author: akashdubey
1212
ms.subservice: storage-common-concepts
1313
ms.custom: devx-track-azurecli, devx-track-azurepowershell, engagement-fy23, devx-track-extended-azdevcli
@@ -212,7 +212,7 @@ The following table describes the fields on the **Networking** tab.
212212
| Network connectivity | Endpoint type | Required | Azure Storage supports two types of endpoints: [standard endpoints](storage-account-overview.md#standard-endpoints) (the default) and [Azure DNS zone endpoints](storage-account-overview.md#azure-dns-zone-endpoints-preview) (preview). Within a given subscription, you can create up to 250<sup>1</sup> accounts with standard endpoints per region, and up to 5000 accounts with Azure DNS zone endpoints per region, for a total of 5250 storage accounts. To register for the preview, see [About the preview](storage-account-overview.md#about-the-preview). |
213213
| Network routing | Routing preference | Required | The network routing preference specifies how network traffic is routed to the public endpoint of your storage account from clients over the internet. By default, a new storage account uses Microsoft network routing. You can also choose to route network traffic through the POP closest to the storage account, which might lower networking costs. For more information, see [Network routing preference for Azure Storage](network-routing-preference.md). |
214214

215-
<sup>1</sup>With a quota increase, you can create up to 500 storage accounts with standard endpoints per region in a given subscription, for a total of 5500 storage accounts per region. For more information, see [Increase Azure Storage account quotas](../../quotas/storage-account-quota-requests.md).
215+
<sup>1</sup> With a quota increase, you can create up to 500 storage accounts with standard endpoints per region in a given subscription, for a total of 5500 storage accounts per region. For more information, see [Increase Azure Storage account quotas](../../quotas/storage-account-quota-requests.md).
216216

217217
The following image shows a standard configuration of the networking properties for a new storage account.
218218

@@ -300,7 +300,8 @@ New-AzStorageAccount -ResourceGroupName $resourceGroup `
300300
-Location $location `
301301
-SkuName Standard_RAGRS `
302302
-Kind StorageV2 `
303-
-AllowBlobPublicAccess $false
303+
-AllowBlobPublicAccess $false `
304+
-MinimumTlsVersion TLS1_2
304305
```
305306

306307
To create an account with Azure DNS zone endpoints (preview), follow these steps:
@@ -333,6 +334,7 @@ $account = New-AzStorageAccount -ResourceGroupName $rgName `
333334
-Location <location> `
334335
-Kind StorageV2 `
335336
-AllowBlobPublicAccess $false `
337+
-MinimumTlsVersion TLS1_2 `
336338
-DnsEndpointType AzureDnsZone
337339
338340
$account.PrimaryEndpoints
@@ -370,6 +372,7 @@ az storage account create \
370372
--location eastus \
371373
--sku Standard_RAGRS \
372374
--kind StorageV2 \
375+
--min-tls-version TLS1_2 \
373376
--allow-blob-public-access false
374377
```
375378

@@ -386,6 +389,8 @@ az storage account create \
386389
--name <account-name> \
387390
--resource-group <resource-group> \
388391
--location <location> \
392+
--min-tls-version TLS1_2 \
393+
--allow-blob-public-access false \
389394
--dns-endpoint-type AzureDnsZone
390395
```
391396

@@ -507,7 +512,7 @@ Deleting a storage account deletes the entire account, including all data in the
507512
508513
Under certain circumstances, a deleted storage account might be recovered, but recovery is not guaranteed. For more information, see [Recover a deleted storage account](storage-account-recover.md).
509514
510-
If you try to delete a storage account associated with an Azure virtual machine, you might get an error about the storage account still being in use. For help troubleshooting this error, see [Troubleshoot errors when you delete storage accounts](/troubleshoot/azure/virtual-machines/storage-resource-deletion-errors).
515+
If you try to delete a storage account associated with an Azure virtual machine, you might get an error about the storage account still being in use. For help with troubleshooting this error, see [Troubleshoot errors when you delete storage accounts](/troubleshoot/azure/virtual-machines/storage-resource-deletion-errors).
511516
512517
# [Portal](#tab/azure-portal)
513518

0 commit comments

Comments
 (0)