Skip to content

Commit 0338145

Browse files
committed
Draft, in progress
1 parent 0382410 commit 0338145

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/iot-dps/quick-setup-auto-provision-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: mvc, devx-track-azurecli, mode-api
1212

1313
# Quickstart: Set up the IoT Hub Device Provisioning Service with Azure CLI
1414

15-
The Azure CLI is used to create and manage Azure resources from the command line or in scripts. This quickstart details using the Azure CLI to create an IoT hub and an IoT Hub Device Provisioning Service, and to link the two services together.
15+
The Azure CLI is used to create and manage Azure resources from the command line or in scripts. This quickstart details using the Azure CLI to create an IoT hub and an IoT Hub Device Provisioning Service instance, and to link the two services together.
1616

1717
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
1818

@@ -47,11 +47,11 @@ The following example creates an IoT hub named *my-sample-hub* in the *westus* l
4747
az iot hub create --name my-sample-hub --resource-group my-sample-resource-group --location westus
4848
```
4949

50-
## Create a Device Provisioning Service
50+
## Create a Device Provisioning Service instance
5151

52-
Create a Device Provisioning Service with the [az iot dps create](/cli/azure/iot/dps#az-iot-dps-create) command.
52+
Create a Device Provisioning Service instance with the [az iot dps create](/cli/azure/iot/dps#az-iot-dps-create) command.
5353

54-
The following example creates a provisioning service named *my-sample-dps* in the *westus* location. You'll also choose a globally unique name for your own provisioning service. Make sure it follows proper naming conventions for an IoT Hub Device Provisioning Service: it should be 3-64 characters in length and can contain only upper or lower case alphanumeric characters or hyphens ('-').
54+
The following example creates a Device Provisioning Service instance named *my-sample-dps* in the *westus* location. You'll also choose a globally unique name for your own instance. Make sure it follows proper naming conventions for an IoT Hub Device Provisioning Service: it should be 3-64 characters in length and can contain only upper or lower case alphanumeric characters or hyphens ('-').
5555

5656
```azurecli-interactive
5757
az iot dps create --name my-sample-dps --resource-group my-sample-resource-group --location westus

0 commit comments

Comments
 (0)