Skip to content

Commit baa6518

Browse files
authored
Merge pull request #226932 from tamram/tamram23-0209
updates for blob background encryption complete
2 parents fc3ed03 + 539a352 commit baa6518

File tree

2 files changed

+7
-31
lines changed

2 files changed

+7
-31
lines changed

articles/storage/blobs/storage-blob-encryption-status.md

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Check the encryption status of a blob
33
titleSuffix: Azure Storage
4-
description: Learn how to use Azure portal, PowerShell, or Azure CLI to check whether a given blob is encrypted. If a blob is not encrypted, learn how to use AzCopy to force encryption by downloading and re-uploading the blob.
4+
description: Learn how to use Azure portal, PowerShell, or Azure CLI to check whether a given blob is encrypted.
55
services: storage
66
author: jimmart-dev
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 11/26/2019
10+
ms.date: 02/09/2023
1111
ms.author: jammart
1212
ms.reviewer: ozgun
1313
ms.subservice: common
@@ -17,9 +17,9 @@ ms.devlang: azurecli
1717

1818
# Check the encryption status of a blob
1919

20-
Every block blob, append blob, or page blob that was written to Azure Storage after October 20, 2017 is encrypted with Azure Storage encryption. Blobs created prior to this date continue to be encrypted by a background process.
20+
Every block blob, append blob, or page blob in Azure Storage is encrypted with Azure Storage encryption. This article shows how to determine whether a specific blob has been encrypted.
2121

22-
This article shows how to determine whether a given blob has been encrypted.
22+
For more information about Azure Storage encryption, see [Azure Storage encryption for data at rest](../common/storage-service-encryption.md).
2323

2424
## Check a blob's encryption status
2525

@@ -71,30 +71,6 @@ To determine when the blob was created, check the value of the **created** prope
7171

7272
---
7373

74-
## Force encryption of a blob
75-
76-
If a blob that was created prior to October 20, 2017 has not yet been encrypted by the background process, you can force encryption to occur immediately by downloading and re-uploading the blob. A simple way to do this is with AzCopy.
77-
78-
To download a blob to your local file system with AzCopy, use the following syntax:
79-
80-
```
81-
azcopy copy 'https://<storage-account-name>.<blob or dfs>.core.windows.net/<container-name>/<blob-path>' '<local-file-path>'
82-
83-
Example:
84-
azcopy copy 'https://storagesamples.blob.core.windows.net/sample-container/blob1.txt' 'C:\temp\blob1.txt'
85-
```
86-
87-
To re-upload the blob to Azure Storage with AzCopy, use the following syntax:
88-
89-
```
90-
azcopy copy '<local-file-path>' 'https://<storage-account-name>.<blob or dfs>.core.windows.net/<container-name>/<blob-name>'
91-
92-
Example:
93-
azcopy copy 'C:\temp\blob1.txt' 'https://storagesamples.blob.core.windows.net/sample-container/blob1.txt'
94-
```
95-
96-
For more information about using AzCopy to copy blob data, see [Transfer data with AzCopy and Blob storage](../common/storage-use-azcopy-v10.md#transfer-data).
97-
9874
## Next steps
9975

10076
[Azure Storage encryption for data at rest](../common/storage-service-encryption.md)

articles/storage/common/storage-service-encryption.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: storage
55
author: tamram
66

77
ms.service: storage
8-
ms.date: 10/31/2022
8+
ms.date: 02/09/2023
99
ms.topic: conceptual
1010
ms.author: tamram
1111
ms.reviewer: ozgun
@@ -24,9 +24,9 @@ Data in Azure Storage is encrypted and decrypted transparently using 256-bit [AE
2424

2525
Azure Storage encryption is enabled for all storage accounts, including both Resource Manager and classic storage accounts. Azure Storage encryption cannot be disabled. Because your data is secured by default, you don't need to modify your code or applications to take advantage of Azure Storage encryption.
2626

27-
Data in a storage account is encrypted regardless of performance tier (standard or premium), access tier (hot or cool), or deployment model (Azure Resource Manager or classic). All blobs in the archive tier are also encrypted. All Azure Storage redundancy options support encryption, and all data in both the primary and secondary regions is encrypted when geo-replication is enabled. All Azure Storage resources are encrypted, including blobs, disks, files, queues, and tables. All object metadata is also encrypted. There is no additional cost for Azure Storage encryption.
27+
Data in a storage account is encrypted regardless of performance tier (standard or premium), access tier (hot or cool), or deployment model (Azure Resource Manager or classic). All new and existing block blobs, append blobs, and page blobs are encrypted, including blobs in the archive tier. All Azure Storage redundancy options support encryption, and all data in both the primary and secondary regions is encrypted when geo-replication is enabled. All Azure Storage resources are encrypted, including blobs, disks, files, queues, and tables. All object metadata is also encrypted.
2828

29-
Every block blob, append blob, or page blob that was written to Azure Storage after October 20, 2017 is encrypted. Blobs created prior to this date continue to be encrypted by a background process. To force the encryption of a blob that was created before October 20, 2017, you can rewrite the blob. To learn how to check the encryption status of a blob, see [Check the encryption status of a blob](../blobs/storage-blob-encryption-status.md).
29+
There is no additional cost for Azure Storage encryption.
3030

3131
For more information about the cryptographic modules underlying Azure Storage encryption, see [Cryptography API: Next Generation](/windows/desktop/seccng/cng-portal).
3232

0 commit comments

Comments
 (0)