Skip to content

Commit 18678ac

Browse files
committed
geolocation -> geolatency
1 parent 59dca91 commit 18678ac

7 files changed

+8
-9
lines changed

articles/iot-dps/how-to-legacy-device-symm-key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you can easily install a [hardware security module (HSM)](concepts-service.md
2020

2121
This tutorial also assumes that the device update takes place in a secure environment to prevent unauthorized access to the master group key or the derived device key.
2222

23-
This tutorial is oriented toward a Windows-based workstation. However, you can perform the procedures on Linux. For a Linux example, see [How to provision for geolocation](how-to-provision-multitenant.md).
23+
This tutorial is oriented toward a Windows-based workstation. However, you can perform the procedures on Linux. For a Linux example, see [Tutorial: Provision for geolatency](how-to-provision-multitenant.md).
2424

2525
> [!NOTE]
2626
> The sample used in this tutorial is written in C. There is also a [C# device provisioning symmetric key sample](https://github.com/Azure-Samples/azure-iot-samples-csharp/tree/main/provisioning/Samples/device/SymmetricKeySample) available. To use this sample, download or clone the [azure-iot-samples-csharp](https://github.com/Azure-Samples/azure-iot-samples-csharp) repository and follow the in-line instructions in the sample code. You can follow the instructions in this tutorial to create a symmetric key enrollment group using the portal and to find the ID Scope and enrollment group primary and secondary keys needed to run the sample. You can also create individual enrollments using the sample.

articles/iot-dps/how-to-provision-multitenant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Tutorial - Provision devices for geolatency in Azure IoT Hub Device Provisioning Service
3-
description: This tutorial shows how to provision devices for geolocation with your Device Provisioning Service (DPS) instance
3+
description: This tutorial shows how to provision devices for geolocation/geolatency with your Device Provisioning Service (DPS) instance
44
author: kgremban
55
ms.author: kgremban
66
ms.topic: tutorial
@@ -13,7 +13,7 @@ services: iot-dps
1313

1414
This tutorial shows how to securely provision multiple simulated symmetric key devices to a group of IoT Hubs using an [allocation policy](concepts-service.md#allocation-policy). Allocation policies that are defined by the provisioning service support a variety of allocation scenarios.
1515

16-
**Geolocation / GeoLatency**: is a common allocation scenario. As a device moves between locations, network latency is improved by having the device provisioned to the IoT hub that's closest to each location. In this scenario, a group of IoT hubs, which span across regions, are selected for enrollments. The **Lowest latency** allocation policy is selected for these enrollments. This policy causes the Device Provisioning Service to evaluate device latency and determine the closet IoT hub out of the group of IoT hubs.
16+
Provisioning for **Geolocation/ GeoLatency** is a common allocation scenario. As a device moves between locations, network latency is improved by having the device provisioned to the IoT hub that's closest to each location. In this scenario, a group of IoT hubs, which span across regions, are selected for enrollments. The **Lowest latency** allocation policy is selected for these enrollments. This policy causes the Device Provisioning Service to evaluate device latency and determine the closet IoT hub out of the group of IoT hubs.
1717

1818
This tutorial uses a simulated device sample from the [Azure IoT C SDK](https://github.com/Azure/azure-iot-sdk-c) to demonstrate how to provision devices across regions. You'll perform the following steps in this tutorial:
1919

articles/iot-dps/how-to-use-custom-allocation-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ The simulated devices will use the derived device keys with each registration ID
407407

408408
In this section, you prepare the development environment used to build the [Azure IoT C SDK](https://github.com/Azure/azure-iot-sdk-c). The SDK includes the sample code for the simulated device. This simulated device will attempt provisioning during the device's boot sequence.
409409

410-
This section is oriented toward a Windows-based workstation. For a Linux example, see the set-up of the VMs in [How to provision for geolocation](how-to-provision-multitenant.md).
410+
This section is oriented toward a Windows-based workstation. For a Linux example, see the set-up of the VMs in [Tutorial: Provision for geolatency](how-to-provision-multitenant.md).
411411

412412
1. Download the [CMake build system](https://cmake.org/download/).
413413

articles/iot-dps/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ landingContent:
4848
links:
4949
- text: Link multiple hubs to DPS
5050
url: tutorial-provision-multiple-hubs.md
51-
- text: Provision for geolocation
51+
- text: Provision for geolatency
5252
url: how-to-provision-multitenant.md
5353
- linkListType: how-to-guide
5454
links:

articles/iot-dps/quick-create-simulated-device-symm-key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this quickstart, you'll create a simulated device on your Windows machine. Th
1919

2020
If you're unfamiliar with the process of provisioning, review the [provisioning](about-iot-dps.md#provisioning-process) overview.
2121

22-
This quickstart demonstrates a solution for a Windows-based workstation. However, you can also perform the procedures on Linux. For a Linux example, see [How to provision for geolocation](how-to-provision-multitenant.md).
22+
This quickstart demonstrates a solution for a Windows-based workstation. However, you can also perform the procedures on Linux. For a Linux example, see [Tutorial: provision for geolatency](how-to-provision-multitenant.md).
2323

2424
## Prerequisites
2525

articles/iot-dps/quick-create-simulated-device-x509.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this quickstart, you'll create a simulated device on your Windows machine. Th
1919

2020
If you're unfamiliar with the process of provisioning, review the [provisioning](about-iot-dps.md#provisioning-process) overview. Also make sure you've completed the steps in [Set up IoT Hub Device Provisioning Service with the Azure portal](./quick-setup-auto-provision.md) before continuing.
2121

22-
This quickstart demonstrates a solution for a Windows-based workstation. However, you can also perform the procedures on Linux. For a Linux example, see [How to provision for geolocation](how-to-provision-multitenant.md).
22+
This quickstart demonstrates a solution for a Windows-based workstation. However, you can also perform the procedures on Linux. For a Linux example, see [Tutorial: Provision for geolatency](how-to-provision-multitenant.md).
2323

2424
## Prerequisites
2525

articles/iot-dps/tutorial-custom-allocation-policies.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,14 +276,13 @@ contoso-heatpump-088 : 6uejA9PfkQgmYylj8Zerp3kcbeVrGZ172YLa7VSnJzg=
276276

277277
---
278278

279-
280279
## Prepare an Azure IoT C SDK development environment
281280

282281
Devices will request provisioning using provisioning sample code included in the [Azure IoT C SDK](https://github.com/Azure/azure-iot-sdk-c).
283282
284283
In this section, you prepare the development environment used to build the [Azure IoT C SDK](https://github.com/Azure/azure-iot-sdk-c). The SDK includes the sample code for the simulated device. This simulated device will attempt provisioning during the device's boot sequence.
285284
286-
This section is oriented toward a Windows-based workstation. For a Linux example, see the set-up of the VMs in [How to provision for geolocation](how-to-provision-multitenant.md).
285+
This section is oriented toward a Windows-based workstation. For a Linux example, see the set-up of the VMs in [Tutorial: Provision for geolatency](how-to-provision-multitenant.md).
287286

288287
1. Download the [CMake build system](https://cmake.org/download/).
289288

0 commit comments

Comments
 (0)