Skip to content

Commit f1731c6

Browse files
committed
pr feedback
1 parent b87b142 commit f1731c6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/healthcare-apis/deidentification/configure-storage.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Learn how to configure Azure Storage to de-identity documents with the de-identification service
3-
description: "Learn how to configure Azure Storage to de-identity documents with the de-identification service."
2+
title: Learn how to configure Azure Storage to de-identify documents with the de-identification service
3+
description: "Learn how to configure Azure Storage to de-identify documents with the de-identification service."
44
author: jovinson-ms
55
ms.author: jovinson
66
ms.service: azure-health-data-services
@@ -15,10 +15,10 @@ ms.date: 11/01/2024
1515
# Tutorial: Configure Azure Storage to de-identify documents
1616

1717
The Azure Health Data Services de-identification service (preview) can de-identify documents in Azure Storage via an asynchronous job. If you have many documents that you would like
18-
to de-identify, using a job is a good option. You may also want to use jobs if you have multiple documents that should be consistently surrogated, meaning that surrogate values in the de-identified output will match across
18+
to de-identify, using a job is a good option. Jobs also provide consistent surrogation, meaning that surrogate values in the de-identified output will match across
1919
all documents. For more information about de-identification, including consistent surrogation, see [What is the de-identification service (preview)?](overview.md)
2020

21-
When you choose to store documents in Azure Blob Storage, you are charged based on Azure Storage pricing. This cost is not included in the
21+
When you choose to store documents in Azure Blob Storage, you're charged based on Azure Storage pricing. This cost isn't included in the
2222
de-identification service pricing. [Explore Azure Blob Storage pricing](https://azure.microsoft.com/en-us/pricing/details/storage/blobs).
2323

2424
In this tutorial, you:
@@ -36,7 +36,7 @@ In this tutorial, you:
3636

3737
## Open Azure CLI
3838

39-
Install [Azure CLI](/cli/azure/install-azure-cli) and open your terminal of choice. In this tutorial, we are using PowerShell.
39+
Install [Azure CLI](/cli/azure/install-azure-cli) and open your terminal of choice. In this tutorial, we're using PowerShell.
4040

4141
## Create a storage account and container
4242
1. Set your context, substituting the subscription name containing your de-identification service for the `<subscription_name>` placeholder:
@@ -62,15 +62,15 @@ Install [Azure CLI](/cli/azure/install-azure-cli) and open your terminal of choi
6262
az storage container create --account-name $StorageAccountName --name deidtest --auth-mode login
6363
```
6464
## Upload a sample document
65-
Next, you'll upload a document that contains synthetic PHI:
65+
Next, you upload a document that contains synthetic PHI:
6666
```powershell
6767
$DocumentContent = "The patient came in for a visit on 10/12/2023 and was seen again November 4th at Contoso Hospital."
6868
az storage blob upload --data $DocumentContent --account-name $StorageAccountName --container-name deidtest --name deidsample.txt --auth-mode login
6969
```
7070

7171
## Grant the de-identification service access to the storage account
7272

73-
In this step, you'll grant the de-identification service's system-assigned managed identity role-based access to the container. You'll grant the **Storage Blob
73+
In this step, you grant the de-identification service's system-assigned managed identity role-based access to the container. You grant the **Storage Blob
7474
Data Contributor** role because the de-identification service will both read the original document and write de-identified output documents. Substitute the name of
7575
your de-identification service for the `<deid_service_name>` placeholder:
7676
```powershell
@@ -79,7 +79,7 @@ az role assignment create --assignee $DeidServicePrincipalId --role "Storage Blo
7979
```
8080

8181
## Configure network isolation on the storage account
82-
Next, you'll update the storage account to disable public network access and only allow access from trusted Azure services such as the de-identification service.
82+
Next, you update the storage account to disable public network access and only allow access from trusted Azure services such as the de-identification service.
8383
After running this command, you won't be able to view the storage container contents without setting a network exception.
8484
Learn more at [Configure Azure Storage firewalls and virtual networks](/azure/storage/common/storage-network-security).
8585

0 commit comments

Comments
 (0)