Skip to content

Commit 3c0b7d4

Browse files
committed
edit pass: import-fhir-data
1 parent d6a9a30 commit 3c0b7d4

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

articles/healthcare-apis/fhir/configure-import-data.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,14 @@ ms.author: kesheth
1111

1212
# Configure FHIR import settings
1313

14-
This article walks you through the steps to configure settings on the FHIR service for `import` operations. To learn about import capabilties that the FHIR service offers, see [Import FHIR data](import-data.md).
14+
This article walks you through the steps to configure settings on the FHIR service for `import` operations. To configure settings, you need to:
1515

16-
To configure settings, you need to:
17-
18-
1. Enable managed identity on the FHIR service.
16+
1. Enable a managed identity on the FHIR service.
1917
1. Create an Azure storage account or use an existing storage account, and then grant permissions to the FHIR service to access it.
20-
1. Set the import configuration in the FHIR service.
18+
1. Set the import configuration of the FHIR service.
2119
1. Use one of the options to securely import FHIR data into the FHIR service from an Azure Data Lake Storage Gen2 account.
2220

23-
## Step 1: Enable managed identity on the FHIR service
21+
## Step 1: Enable a managed identity on the FHIR service
2422

2523
The first step is to enable a system-wide managed identity on the service. This identity is used to grant FHIR service access to the storage account. For more information about managed identities in Azure, see [About managed identities for Azure resources](../../active-directory/managed-identities-azure-resources/overview.md).
2624

@@ -40,7 +38,7 @@ After you enable the managed identity, a system-assigned GUID value appears.
4038
Use the following steps to assign permissions to access the storage account:
4139

4240
1. In the storage account, browse to **Access Control (IAM)**.
43-
2. Select **Add role assignment**. If the option for adding a role assignment option is unavailable, ask your Azure administrator to assign you permission to perform this step.
41+
2. Select **Add role assignment**. If the option for adding a role assignment is unavailable, ask your Azure administrator to assign you permission to perform this step.
4442

4543
For more information about assigning roles in the Azure portal, see [Azure built-in roles](../../role-based-access-control/role-assignments-portal.md).
4644
3. Add the [Storage Blob Data Contributor](../../role-based-access-control/built-in-roles.md#storage-blob-data-contributor) role to the FHIR service.
@@ -53,7 +51,7 @@ Now you're ready to select the storage account for import.
5351
## Step 3: Set the import configuration of the FHIR service
5452

5553
> [!NOTE]
56-
> If you haven't assigned storage access permissions to the FHIR service, the import operation (`import`) will fail.
54+
> If you haven't assigned storage access permissions to the FHIR service, the `import` operation will fail.
5755
5856
For this step, you need to get the request URL and JSON body:
5957

@@ -62,7 +60,7 @@ For this step, you need to get the request URL and JSON body:
6260
3. Select **JSON View**.
6361
4. Select the API version as **2022-06-01** or later.
6462

65-
To specify the Azure storage account in JSON view, you need to use [REST API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
63+
To specify the Azure storage account in JSON view, you need to use the [REST API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
6664

6765
[![Screenshot of selections for opening the JSON view.](media/bulk-import/fhir-json-view.png)](media/bulk-import/fhir-json-view.png#lightbox)
6866

@@ -98,10 +96,11 @@ You can also use the **Deploy to Azure** button to open a custom Azure Resource
9896

9997
## Step 4: Secure the FHIR service's import operation
10098

101-
To securely import FHIR data into the FHIR service from an Azure Data Lake Storage Gen2 account, you have two options:
99+
To securely import FHIR data into the FHIR service from an Azure Data Lake Storage Gen2 account, you have three options:
102100

103101
* Enable the FHIR service as a trusted Microsoft service.
104-
* Allow specific IP addresses associated with the FHIR service to access the storage account. This option permits two configurations, depending on whether or not the storage account is in the same Azure region as the FHIR service.
102+
* Allow specific IP addresses associated with the FHIR service to access the storage account from other Azure regions.
103+
* Allow specific IP addresses associated with the FHIR Service to access the storage account in the same region as the FHIR service.
105104

106105
### Enable the FHIR service as a trusted Microsoft service
107106

@@ -143,19 +142,17 @@ To securely import FHIR data into the FHIR service from an Azure Data Lake Stora
143142
Add-AzStorageAccountNetworkRule -ResourceGroupName $resourceGroupName -Name $storageaccountName -TenantId $tenantId -ResourceId $resourceId
144143
```
145144

146-
1. Confirm that in the **Firewall** section under **Resource instances**, **2 selected** appears in the **Instance name** dropdown list. The two selected instances are the name of the workspace instance and the name of the FHIR service instance that you registered as trusted Microsoft resources.
145+
1. Confirm that under **Resource instances**, **2 selected** appears in the **Instance name** dropdown list. The two selected instances are the name of the workspace instance and the name of the FHIR service instance that you registered as trusted Microsoft resources.
147146

148147
[![Screenshot of Azure Storage networking settings with resource type and instance names.](media/export-data/storage-networking-2.png)](media/export-data/storage-networking-2.png#lightbox)
149148

150149
You're now ready to securely import FHIR data from the storage account. The storage account is on selected networks and isn't publicly accessible. To securely access the files, you can use [private endpoints](../../storage/common/storage-private-endpoints.md) for the storage account.
151150

152-
### Allow specific IP addresses to access the storage account
153-
154151
[!INCLUDE [Specific IP ranges for storage account](../includes/common-ip-address-storage-account.md)]
155152

156153
## Next steps
157154

158-
In this article, you learned how the FHIR service supports the `import` operation and how you can import data into FHIR service from a storage account. You also learned about the steps for configuring import settings in the FHIR service. For more information about converting data to FHIR, exporting settings to set up a storage account, and moving data to Azure Synapse Analytics, see:
155+
In this article, you learned how the FHIR service supports the `import` operation and how you can import data into the FHIR service from a storage account. You also learned about the steps for configuring import settings in the FHIR service. For more information about converting data to FHIR, exporting settings to set up a storage account, and moving data to Azure Synapse Analytics, see:
159156

160157
>[!div class="nextstepaction"]
161158
>[Import FHIR data](import-data.md)

articles/healthcare-apis/includes/common-ip-address-storage-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: kesheth
99
ms.custom: "include file"
1010
---
1111

12-
### Allow specific IP addresses from other Azure regions to access the Azure storage account
12+
### Allow specific IP addresses to access the Azure storage account from other Azure regions
1313

1414
1. In the Azure portal, go to the Azure Data Lake Storage Gen2 account.
1515

0 commit comments

Comments
 (0)