Skip to content

Commit 86f417c

Browse files
committed
Updating with correct account type list
1 parent 3b4540d commit 86f417c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/storage/common/infrastructure-encryption-enable.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: normesta
77

88
ms.service: azure-storage
9-
ms.date: 11/06/2023
9+
ms.date: 06/05/2024
1010
ms.topic: conceptual
1111
ms.author: normesta
1212
ms.reviewer: ozgun
@@ -29,14 +29,14 @@ To doubly encrypt your data, you must first create a storage account or an encry
2929
3030
## Create an account with infrastructure encryption enabled
3131

32-
To enable infrastructure encryption for a storage account, you must configure a storage account to use infrastructure encryption at the time that you create the account. Infrastructure encryption cannot be enabled or disabled after the account has been created. The storage account must be of type general-purpose v2 or premium block blob.
32+
To enable infrastructure encryption for a storage account, you must configure a storage account to use infrastructure encryption at the time that you create the account. Infrastructure encryption cannot be enabled or disabled after the account has been created. The storage account must be of type general-purpose v2, premium block blob, premium page blob, or premium file shares.
3333

3434
# [Azure portal](#tab/portal)
3535

3636
To use the Azure portal to create a storage account with infrastructure encryption enabled, follow these steps:
3737

3838
1. In the Azure portal, navigate to the **Storage accounts** page.
39-
1. Choose the **Add** button to add a new general-purpose v2 or premium block blob storage account.
39+
1. Choose the **Add** button to add a new general-purpose v2, premium block blob, premium page blob, or premium file share account.
4040
1. On the **Encryption** tab, locate **Enable infrastructure encryption**, and select **Enabled**.
4141
1. Select **Review + create** to finish creating the storage account.
4242

@@ -53,7 +53,7 @@ To verify that infrastructure encryption is enabled for a storage account with t
5353

5454
To use PowerShell to create a storage account with infrastructure encryption enabled, make sure you have installed the [Az.Storage PowerShell module](https://www.powershellgallery.com/packages/Az.Storage), version 2.2.0 or later. For more information, see [Install Azure PowerShell](/powershell/azure/install-azure-powershell).
5555

56-
Next, create a general-purpose v2 or premium block blob storage account by calling the [New-AzStorageAccount](/powershell/module/az.storage/new-azstorageaccount) command. Include the `-RequireInfrastructureEncryption` option to enable infrastructure encryption.
56+
Next, create a general-purpose v2, premium block blob, premium page blob, or premium file share storage account by calling the [New-AzStorageAccount](/powershell/module/az.storage/new-azstorageaccount) command. Include the `-RequireInfrastructureEncryption` option to enable infrastructure encryption.
5757

5858
The following example shows how to create a general-purpose v2 storage account that is configured for read-access geo-redundant storage (RA-GRS) and has infrastructure encryption enabled for double encryption of data. Remember to replace the placeholder values in brackets with your own values:
5959

@@ -81,7 +81,7 @@ $account.Encryption.RequireInfrastructureEncryption
8181

8282
To use Azure CLI to create a storage account that has infrastructure encryption enabled, make sure you have installed Azure CLI version 2.8.0 or later. For more information, see [Install the Azure CLI](/cli/azure/install-azure-cli).
8383

84-
Next, create a general-purpose v2 or premium block blob storage account by calling the [az storage account create](/cli/azure/storage/account#az-storage-account-create) command and include the `--require-infrastructure-encryption option` to enable infrastructure encryption.
84+
Next, create a general-purpose v2, premium block blob, premium page blob, or premium file share account by calling the [az storage account create](/cli/azure/storage/account#az-storage-account-create) command and include the `--require-infrastructure-encryption option` to enable infrastructure encryption.
8585

8686
The following example shows how to create a general-purpose v2 storage account that is configured for read-access geo-redundant storage (RA-GRS) and has infrastructure encryption enabled for double encryption of data. Remember to replace the placeholder values in brackets with your own values:
8787

0 commit comments

Comments
 (0)