Skip to content

Commit 9b142de

Browse files
committed
edit pass
1 parent 3ce5a4e commit 9b142de

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ az afd profile create --profile-name myfrontdoorprofile --resource-group my-deid
8989

9090
### Add an endpoint
9191

92-
To create an endpoint in your Azure Front Door profile, run [`az afd endpoint create`](/cli/azure/afd/endpoint#az-afd-endpoint-create). This endpoint routes requests to your services. You can create multiple endpoints in your profile after you finish this article.
92+
To create an endpoint in your Azure Front Door profile, run [`az afd endpoint create`](/cli/azure/afd/endpoint#az-afd-endpoint-create). This endpoint routes requests to your services. You can create multiple endpoints in your profile after you finish this tutorial.
9393

9494
```azurecli-interactive
9595
az afd endpoint create --resource-group my-deid --endpoint-name myendpoint --profile-name myfrontdoorprofile --enabled-state Enabled
@@ -122,7 +122,7 @@ az afd origin-group create --resource-group my-deid --origin-group-name myorigin
122122

123123
### Add origins to the origin group
124124

125-
To add an origin to your origin group, run [`az afd origin create`](/cli/azure/afd/origin#az-afd-origin-create). 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`.
125+
To add an origin to your origin group, run [`az afd origin create`](/cli/azure/afd/origin#az-afd-origin-create). 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 have a value like `abcdefghijk.api.eastus.deid.azure.com`.
126126

127127
```azurecli-interactive
128128
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
@@ -168,30 +168,30 @@ Allow about 15 minutes for this step to complete. It takes some time for this ch
168168

169169
When you create the Azure Front Door profile, it takes a few minutes for the configuration to be deployed globally. After this period, you can access the host you created.
170170

171-
To get the host name of the Azure Front Door endpoint, run [`az afd endpoint show`](/cli/azure/afd/endpoint#az-afd-endpoint-show). It should look like `abddefg.azurefd.net`.
171+
To get the host name of the Azure Front Door endpoint, run [`az afd endpoint show`](/cli/azure/afd/endpoint#az-afd-endpoint-show). It looks like `abddefg.azurefd.net`.
172172

173173
```azurecli-interactive
174174
az afd endpoint show --resource-group my-deid --profile-name myfrontdoorprofile --endpoint-name myendpoint --query "hostName"
175175
```
176176

177-
In a browser, go to the endpoint host name that the previous command returned: `<endpoint>.azurefd.net/health`. Your request should automatically get routed to the primary de-identification service in East US.
177+
In a browser, go to the endpoint host name that the previous command returned: `<endpoint>.azurefd.net/health`. Your request automatically gets routed to the primary de-identification service in East US.
178178

179179
To test instant global failover:
180180

181181
1. Open a browser and go to the endpoint host name: `<endpoint>.azurefd.net/health`.
182182

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.
184184

185-
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.
185+
1. Refresh your browser. You see the same information page because traffic is now directed to the de-identification service in West US 2.
186186

187187
> [!TIP]
188188
> You might need to refresh the page a few times for the failover to complete.
189189
190190
1. Now disable public network access for the de-identification service in West US 2.
191191

192-
1. Refresh your browser. This time, you should see an error message.
192+
1. Refresh your browser. This time, you see an error message.
193193

194-
1. Re-enable public network access for one of the de-identification services. Refresh your browser and you should see the health status again.
194+
1. Re-enable public network access for one of the de-identification services. Refresh your browser and you see the health status again.
195195

196196
You've now validated that you can access your services through Azure Front Door and that failover functions as intended. Enable public network access on the other service if you're done with failover testing.
197197

0 commit comments

Comments
 (0)