You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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`.
@@ -168,30 +168,30 @@ Allow about 15 minutes for this step to complete. It takes some time for this ch
168
168
169
169
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.
170
170
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`.
172
172
173
173
```azurecli-interactive
174
174
az afd endpoint show --resource-group my-deid --profile-name myfrontdoorprofile --endpoint-name myendpoint --query "hostName"
175
175
```
176
176
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.
178
178
179
179
To test instant global failover:
180
180
181
181
1. Open a browser and go to the endpoint host name: `<endpoint>.azurefd.net/health`.
182
182
183
183
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
184
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.
186
186
187
187
> [!TIP]
188
188
> You might need to refresh the page a few times for the failover to complete.
189
189
190
190
1. Now disable public network access for the de-identification service in West US 2.
191
191
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.
193
193
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.
195
195
196
196
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.
0 commit comments