Skip to content

Commit 0de2ca7

Browse files
committed
minor fixes
1 parent e27c3b1 commit 0de2ca7

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/reliability/reliability-health-data-services-deidentification.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To complete this tutorial:
4747

4848
#### Create a resource group
4949

50-
You need two instances of a de-identification service (preview) in different Azure regions for this tutorial. The tutorial uses the [region pair](../availability-zones/cross-region-replication-azure.md#azure-paired-regions) East US/West US as your two regions, but feel free to choose your own regions.
50+
You need two instances of a de-identification service (preview) in different Azure regions for this tutorial. The tutorial uses the East US and West US 2 regions, but feel free to choose your own regions.
5151

5252
To make management and clean-up simpler, you use a single resource group for all resources in this tutorial. Consider using separate resource groups for each region/resource to further isolate your resources in a disaster recovery situation.
5353

@@ -59,7 +59,7 @@ az group create --name my-deid --location eastus
5959

6060
#### Create de-identification services (preview)
6161

62-
Follow the steps at [Quickstart: Deploy the de-identification service (preview)](/azure/healthcare-apis/deidentification/quickstart) to create two separate services, one in East US and one in West US.
62+
Follow the steps at [Quickstart: Deploy the de-identification service (preview)](/azure/healthcare-apis/deidentification/quickstart) to create two separate services, one in East US and one in West US 2.
6363

6464
Note the service URL of each de-identification service so you can define the backend addresses when you deploy the Azure Front Door in the next step.
6565

@@ -88,9 +88,9 @@ az afd profile create --profile-name myfrontdoorprofile --resource-group my-deid
8888
|`sku` |`Premium_AzureFrontDoor` |The pricing tier of the Azure Front Door profile. |
8989

9090

91-
### Add an endpoint
91+
### Add an Azure Front Door endpoint
9292

93-
Run [`az afd endpoint create`](/cli/azure/afd/endpoint#az-afd-endpoint-create) to create an endpoint in your profile. You can create multiple endpoints in your profile after finishing the create experience.
93+
Run [`az afd endpoint create`](/cli/azure/afd/endpoint#az-afd-endpoint-create) to create an endpoint in your Azure Front Door profile. This endpoint will route requests to your services. You can create multiple endpoints in your profile after finishing the create experience.
9494

9595
```azurecli-interactive
9696
az afd endpoint create --resource-group my-deid --endpoint-name myendpoint --profile-name myfrontdoorprofile --enabled-state Enabled
@@ -101,7 +101,7 @@ az afd endpoint create --resource-group my-deid --endpoint-name myendpoint --pro
101101
|`endpoint-name` |`myendpoint` |Name of the endpoint under the profile, which is unique globally. |
102102
|`enabled-state` |`Enabled` |Whether to enable this endpoint. |
103103

104-
#### Create an origin group
104+
#### Create an Azure Front Door origin group
105105

106106
Run [`az afd origin-group create`](/cli/azure/afd/origin-group#az-afd-origin-group-create) to create an origin group that contains your two de-identification services.
107107

@@ -121,12 +121,12 @@ az afd origin-group create --resource-group my-deid --origin-group-name myorigin
121121
|`additional-latency-in-milliseconds` |`50` |The extra latency in milliseconds for probes to fall into the lowest latency bucket. |
122122
|`enable-health-probe` | | Switch to control the status of the health probe. |
123123

124-
### Add origins to the group
124+
### Add origins to the Azure Front Door origin group
125125

126126
Run [`az afd origin create`](/cli/azure/afd/origin#az-afd-origin-create) to add an origin to your origin group. For the `--host-name` and `--origin-host-header` parameters, replace the placeholder value `<service-url-east-us>` with your East US service URL, leaving out the scheme (`https://`). You should have a value like `abcdefghijk.api.eastus.deid.azure.com`.
127127

128128
```azurecli-interactive
129-
az afd origin create --resource-group my-deid --host-name <service-url-east-us> --profile-name myfrontdoorprofile --origin-group-name myorigingroup --origin-name primarydeid --origin-host-header <service-url-east-us> --priority 1 --weight 1000 --enabled-state Enabled --https-port 443
129+
az afd origin create --resource-group my-deid --host-name <service-url-east-us> --profile-name myfrontdoorprofile --origin-group-name myorigingroup --origin-name deid1 --origin-host-header <service-url-east-us> --priority 1 --weight 1000 --enabled-state Enabled --https-port 443
130130
```
131131

132132
|Parameter |Value |Description |
@@ -139,15 +139,15 @@ az afd origin create --resource-group my-deid --host-name <service-url-east-us>
139139
|`enabled-state` |`Enabled` |Whether to enable this origin. |
140140
|`https-port` |`443` |The port used for HTTPS requests to the origin. |
141141

142-
Repeat this step to add your second origin. For the `--host-name` and `--origin-host-header` parameters, replace the placeholder value `<service-url-west-us>` with your West US service URL, leaving out the scheme (`https://`).
142+
Repeat this step to add your second origin. For the `--host-name` and `--origin-host-header` parameters, replace the placeholder value `<service-url-west-us-2>` with your West US 2 service URL, leaving out the scheme (`https://`).
143143

144144
```azurecli-interactive
145-
az afd origin create --resource-group my-deid --host-name <service-url-west-us> --profile-name myfrontdoorprofile --origin-group-name myorigingroup --origin-name deid2 --origin-host-header <service-url-west-us> --priority 1 --weight 1000 --enabled-state Enabled --https-port 443
145+
az afd origin create --resource-group my-deid --host-name <service-url-west-us-2> --profile-name myfrontdoorprofile --origin-group-name myorigingroup --origin-name deid2 --origin-host-header <service-url-west-us-2> --priority 1 --weight 1000 --enabled-state Enabled --https-port 443
146146
```
147147

148148
Pay attention to the `--priority` parameters in both commands. Because both origins are set to priority `1`, Azure Front Door treats both origins as active and direct traffic to both regions. If the priority for one origin is set to `2`, Azure Front Door will treat that origin as secondary and will direct all traffic to the other origin unless it goes down.
149149

150-
#### Add a route
150+
#### Add an Azure Front Door route
151151

152152
Run [`az afd route create`](/cli/azure/afd/route#az-afd-route-create) to map your endpoint to the origin group. This route forwards requests from the endpoint to your origin group.
153153

@@ -181,12 +181,12 @@ To test instant global failover:
181181

182182
1. Open a browser and go to the endpoint hostname: `<endpoint>.azurefd.net/health`.
183183
1. Follow the steps at [Configure private access](/azure/healthcare-apis/deidentification/configure-private-endpoints#configure-private-access) to disable public network access for the de-identification service in East US.
184-
1. Refresh your browser. You should see the same information page because traffic is now directed to the de-identification service in West US.
184+
1. Refresh your browser. You should see the same information page because traffic is now directed to the de-identification service in West US 2.
185185

186186
> [!TIP]
187187
> You might need to refresh the page a few times for the failover to complete.
188188
189-
1. Now disable public network access for the de-identification service in West US.
189+
1. Now disable public network access for the de-identification service in West US 2.
190190
1. Refresh your browser. This time, you should see an error message.
191191
1. Re-enable public network access for one of the de-identification services. Refresh your browser and you should see the health status again.
192192

0 commit comments

Comments
 (0)