Skip to content

Commit 6c9aa03

Browse files
committed
initial commit
1 parent 8bbcdd4 commit 6c9aa03

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Create an Azure Health Data Services de-identification service by using Azure Resource Manager template (ARM template)
3+
description: Learn how to create an Azure Health Data Services de-identification service by using Azure Resource Manager template (ARM template).
4+
services: azure-resource-manager
5+
ms.service: azure-health-data-services
6+
ms.subservice: deidentification-service
7+
author: jovinson-ms
8+
ms.author: jovinson
9+
ms.topic: quickstart-arm
10+
ms.custom: subject-armqs
11+
ms.date: 11/04/2024
12+
13+
# Customer intent: As a cloud administrator, I want a quick method to deploy an Azure resource for production environments or to evaluate the service's functionality.
14+
---
15+
16+
# Quickstart: Create a de-identification service (preview) using an ARM template
17+
18+
This quickstart describes how to use an Azure Resource Manager template (ARM template) to create
19+
an Azure Health Data Services de-identification service (preview).
20+
21+
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
22+
23+
If your environment meets the prerequisites and you're familiar with using ARM templates, select the
24+
**Deploy to Azure** button. The template will open in the Azure portal.
25+
26+
:::image type="content" source="~/articles/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.healthdataaiservices%2Fdeidentification-service-create%2Fazuredeploy.json":::
27+
28+
## Prerequisites
29+
30+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
31+
32+
[!INCLUDE [include](~/reusable-content/azure-cli/azure-cli-prepare-your-environment-no-header.md)]
33+
34+
## Review the template
35+
36+
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates).
37+
38+
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.healthdataaiservices/deidentification-service-create/azuredeploy.json":::
39+
40+
- [Microsoft.HealthDataAIServices/deidServices](/rest/api/health-controlplane/deid-services?view=rest-health-controlplane-2024-02-28-preview): Create a de-identification service.
41+
42+
## Deploy the template
43+
44+
Deploy the template using any standard method for [deploying an ARM template](../azure-resource-manager/templates/deploy-cli.md) such as the following example using Azure CLI.
45+
1. Save the template file as **azuredeploy.json** to your local computer.
46+
1. Create a resource group in one of the supported regions for the de-identificaation service, replacing **\<deid-service-name\>** with the name you choose for your de-identification service:
47+
```azurecli
48+
az group create --name exampleRG --location westus3
49+
50+
az deployment group create --resource-group exampleRG --template-file azuredeploy.json --parameters deidServiceName="<deid-service-name>"
51+
```
52+
53+
When the deployment finishes, you should see a message indicating the deployment succeeded.
54+
55+
## Review deployed resources
56+
57+
Review your resource with Azure CLI, replacing **\<deid-service-name\>** with the name you choose for your de-identification service:
58+
```azurecli
59+
az resource show -g exampleRG -n <deid-service-name> --resource-type "Microsoft.HealthDataAIServices/deidServices"
60+
```
61+
62+
## Clean up resources
63+
64+
When no longer needed, delete the resource group. The resource group and all the resources in the
65+
resource group are deleted.
66+
```azurecli
67+
az group delete --name exampleRG
68+
```
69+
70+
## Next steps
71+
72+
For a step-by-step tutorial that guides you through the process of creating a template, see:
73+
74+
> [!div class="nextstepaction"]
75+
> [Tutorial: Create and deploy your first ARM template](/azure/azure-resource-manager/templates/template-tutorial-create-first-template)

articles/healthcare-apis/deidentification/toc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ items:
1111
items:
1212
- name: Deploy the de-identification service
1313
href: quickstart.md
14+
- name: ARM template
15+
displayName: ARM, Resource Manager, Template, Bicep
16+
href: quickstart-arm.md
1417
- name: Azure Health De-identification client library for .NET
1518
href: quickstart-sdk-net.md
1619
- name: How-to

0 commit comments

Comments
 (0)