title | description | author | ms.author | ms.date | ms.topic | ms.service | services | manager | ms.custom | zone_pivot_groups |
---|---|---|---|---|---|---|---|---|---|---|
Quickstart - Provision a simulated symmetric key device to Microsoft Azure IoT Hub |
Learn how to provision a device that authenticates with a symmetric key in the Azure IoT Hub Device Provisioning Service (DPS) |
kgremban |
kgremban |
09/29/2021 |
quickstart |
iot-dps |
iot-dps |
lizross |
mvc, mode-other |
iot-dps-set1 |
In this quickstart, you'll create a simulated device on your Windows machine. The simulated device will be configured to use the symmetric key attestation mechanism for authentication. After you've configured your device, you'll then provision it to your IoT hub using the Azure IoT Hub Device Provisioning Service.
If you're unfamiliar with the process of provisioning, review the provisioning overview.
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 multitenancy.
-
If you don't have an Azure subscription, create a free account before you begin.
-
Complete the steps in Set up IoT Hub Device Provisioning Service with the Azure portal. ::: zone pivot="programming-language-ansi-c"
-
If you're using a Windows development environment, install Visual Studio 2019 with the 'Desktop development with C++' workload enabled. Visual Studio 2015 and Visual Studio 2017 are also supported. For Linux or macOS, see the appropriate section in Prepare your development environment in the SDK documentation.
::: zone-end
::: zone pivot="programming-language-csharp"
-
Install .NET SDK 6.0 or later on your Windows-based machine. You can use the following command to check your version.
dotnet --info
::: zone-end
::: zone pivot="programming-language-nodejs"
- Install Node.js v4.0+.
::: zone-end
::: zone pivot="programming-language-python"
- Install Python 3.7 or later installed on your Windows-based machine. You can check your version of Python by running
python --version
.
::: zone-end
::: zone pivot="programming-language-java"
-
Install Java SE Development Kit 8 or later installed on your machine.
-
Download and install Maven.
::: zone-end
- Install the latest version of Git. Make sure that Git is added to the environment variables accessible to the command window. See Software Freedom Conservancy's Git client tools for the latest version of
git
tools to install, which includes Git Bash, the command-line app that you can use to interact with your local Git repository.
::: zone pivot="programming-language-ansi-c"
In this section, you'll prepare a development environment that's used to build the Azure IoT C SDK. The sample code attempts to provision the device, during the device's boot sequence.
-
Download the latest CMake build system.
[!IMPORTANT] Confirm that the Visual Studio prerequisites (Visual Studio and the 'Desktop development with C++' workload) are installed on your machine, before starting the
CMake
installation. Once the prerequisites are in place, and the download is verified, install the CMake build system. Also, be aware that older versions of the CMake build system fail to generate the solution file used in this article. Make sure to use the latest version of CMake. -
Open a web browser, and go to the Release page of the Azure IoT C SDK.
-
Select the Tags tab at the top of the page.
-
Copy the tag name for the latest release of the Azure IoT C SDK.
-
Open a command prompt or Git Bash shell. Run the following commands to clone the latest release of the Azure IoT C SDK GitHub repository(replace
<release-tag>
with the tag you copied in the previous step).git clone -b <release-tag> https://github.com/Azure/azure-iot-sdk-c.git cd azure-iot-sdk-c git submodule update --init
This operation could take several minutes to complete.
-
When the operation is complete, run the following commands from the
azure-iot-sdk-c
directory:mkdir cmake cd cmake
-
The code sample uses a symmetric key to provide attestation. Run the following command to build a version of the SDK specific to your development client platform that includes the device provisioning client:
cmake -Dhsm_type_symm_key:BOOL=ON -Duse_prov_client:BOOL=ON ..
[!TIP] If
cmake
does not find your C++ compiler, you may get build errors while running the above command. If that happens, try running the command in the Visual Studio command prompt. -
When the build completes successfully, the last few output lines will look similar to the following output:
$ cmake -Dhsm_type_symm_key:BOOL=ON -Duse_prov_client:BOOL=ON .. -- Building for: Visual Studio 16 2019 -- Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.19042. -- The C compiler identification is MSVC 19.29.30040.0 -- The CXX compiler identification is MSVC 19.29.30040.0 ... -- Configuring done -- Generating done -- Build files have been written to: E:/IoT Testing/azure-iot-sdk-c/cmake
::: zone-end
::: zone pivot="programming-language-csharp"
-
Open a Git CMD or Git Bash command-line environment.
-
Clone the Azure IoT Samples for C# GitHub repository using the following command:
git clone https://github.com/Azure-Samples/azure-iot-samples-csharp.git
::: zone-end
::: zone pivot="programming-language-nodejs"
-
Open a Git CMD or Git Bash command-line environment.
-
Clone the Azure IoT SDK for Node.js GitHub repository using the following command:
git clone https://github.com/Azure/azure-iot-sdk-node.git --recursive
::: zone-end
::: zone pivot="programming-language-python"
-
Open a Git CMD or Git Bash command-line environment.
-
Clone the Azure IoT SDK for Python GitHub repository using the following command:
git clone https://github.com/Azure/azure-iot-sdk-python.git --recursive
::: zone-end
::: zone pivot="programming-language-java"
-
Open a Git CMD or Git Bash command-line environment.
-
Clone the Azure IoT SDK for Java GitHub repository using the following command:
git clone https://github.com/Azure/azure-iot-sdk-java.git --recursive
-
Go to the root
azure-iot-sdk-java
directory and build the project to download all needed packages. This step can take several minutes to complete.cd azure-iot-sdk-java mvn install -DskipTests=true
::: zone-end
The Azure IoT Device Provisioning Service supports two types of enrollments:
- Enrollment groups: Used to enroll multiple related devices.
- Individual enrollments: Used to enroll a single device.
This article demonstrates an individual enrollment for a single device to be provisioned with an IoT hub.
-
Sign in to the Azure portal.
-
On the left-hand menu or on the portal page, select All resources.
-
Select your Device Provisioning Service.
-
In the Settings menu, select Manage enrollments.
-
At the top of the page, select + Add individual enrollment.
-
In the Add Enrollment page, enter the following information.
-
Mechanism: Select Symmetric Key as the identity attestation Mechanism.
-
Auto-generate keys: Check this box.
-
Registration ID: Enter a registration ID to identify the enrollment. The registration ID is a case-insensitive string (up to 128 characters long) of alphanumeric characters plus the special characters:
'-'
,'.'
,'_'
,':'
. The last character must be alphanumeric or dash ('-'
). For example, symm-key-device-007. -
IoT Hub Device ID: Enter a device identifier. The device ID must comply with the Device ID string requirements.
:::zone pivot="programming-language-ansi-c"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/create-individual-enrollment.png" alt-text="Enter device enrollment information.":::
::: zone-end
:::zone pivot="programming-language-csharp"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/create-individual-enrollment-csharp.png" alt-text="Enter C# device enrollment information.":::
::: zone-end
:::zone pivot="programming-language-nodejs"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/create-individual-enrollment-nodejs.png" alt-text="Enter Node.js device enrollment information.":::
::: zone-end
:::zone pivot="programming-language-python"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/create-individual-enrollment-python.png" alt-text="Enter Python device enrollment information.":::
::: zone-end
::: zone pivot="programming-language-java"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/create-individual-enrollment-java.png" alt-text="Enter Java device enrollment information.":::
::: zone-end
-
-
Select Save. A Primary Key and Secondary Key are generated and added to the enrollment entry, and you are taken back to the Manage enrollments page.
-
To view your simulated symmetric key device enrollment, select the Individual Enrollments tab.
-
Select your device (symm-key-device-007).
-
Copy the value of the generated Primary Key.
:::image type="content" source="./media/quick-create-simulated-device-symm-key/copy-device-enrollment-primary-key.png" alt-text="Copy the primary key of the device enrollment":::
::: zone pivot="programming-language-ansi-c"
In this section, you'll update the device sample code to send the device's boot sequence to your Device Provisioning Service instance. This boot sequence will cause the device to be recognized, authenticated, and assigned to an IoT hub linked to the Device Provisioning Service instance.
The sample provisioning code accomplishes the following tasks, in order:
-
Authenticates your device with your Device Provisioning resource using the following three parameters:
- The ID Scope of your Device Provisioning Service
- The registration ID for your device enrollment.
- The primary symmetric key for your device enrollment.
-
Assigns the device to the IoT hub already linked to your Device Provisioning Service instance.
To update and run the provisioning sample with your device information:
-
In the main menu of your Device Provisioning Service, select Overview.
-
Copy the ID Scope value.
:::image type="content" source="./media/quick-create-simulated-device-symm-key/extract-dps-endpoints.png" alt-text="Extract Device Provisioning Service endpoint information":::
-
In Visual Studio, open the azure_iot_sdks.sln solution file that was generated by running CMake. The solution file should be in the following location:
\azure-iot-sdk-c\cmake\azure_iot_sdks.sln
[!TIP] If the file was not generated in your cmake directory, make sure you used a recent version of the CMake build system.
-
In Visual Studio's Solution Explorer window, go to the Provision_Samples folder. Expand the sample project named prov_dev_client_sample. Expand Source Files, and open prov_dev_client_sample.c.
-
Find the
id_scope
constant, and replace the value with the ID Scope value that you copied in step 2.static const char* id_scope = "0ne00002193";
-
Find the definition for the
main()
function in the same file. Make sure thehsm_type
variable is set toSECURE_DEVICE_TYPE_SYMMETRIC_KEY
as shown below:SECURE_DEVICE_TYPE hsm_type; //hsm_type = SECURE_DEVICE_TYPE_TPM; //hsm_type = SECURE_DEVICE_TYPE_X509; hsm_type = SECURE_DEVICE_TYPE_SYMMETRIC_KEY;
-
Find the call to
prov_dev_set_symmetric_key_info()
in prov_dev_client_sample.c that is commented out.// Set the symmetric key if using they auth type //prov_dev_set_symmetric_key_info("<symm_registration_id>", "<symmetric_Key>");
Uncomment the function call, and replace the placeholder values (including the angle brackets) with your registration ID and the primary key value you copied earlier.
// Set the symmetric key if using they auth type prov_dev_set_symmetric_key_info("symm-key-device-007", "your primary key here");
-
Save the file.
-
Right-click the prov_dev_client_sample project and select Set as Startup Project.
-
On the Visual Studio menu, select Debug > Start without debugging to run the solution. In the rebuild the project prompt, select Yes to rebuild the project before running.
The following output is an example of the device successfully connecting to the provisioning Service instance to be assigned to an IoT hub:
Provisioning API Version: 1.2.8 Registering Device Provisioning Status: PROV_DEVICE_REG_STATUS_CONNECTED Provisioning Status: PROV_DEVICE_REG_STATUS_ASSIGNING Registration Information received from service: test-docs-hub.azure-devices.net, deviceId: device-007 Press enter key to exit:
::: zone-end
::: zone pivot="programming-language-csharp"
The sample provisioning code accomplishes the following tasks:
-
Authenticates your device with your Device Provisioning resource using the following three parameters:
- The ID Scope of your Device Provisioning Service
- The registration ID for your device enrollment.
- The primary symmetric key for your device enrollment.
-
Assigns the device to the IoT hub already linked to your Device Provisioning Service instance.
-
Sends a test telemetry message to the IoT hub.
To update and run the provisioning sample with your device information:
-
In the main menu of your Device Provisioning Service, select Overview.
-
Copy the ID Scope value.
:::image type="content" source="./media/quick-create-simulated-device-symm-key/extract-dps-endpoints.png" alt-text="Extract Device Provisioning Service endpoint information":::
-
Open a command prompt and go to the SymmetricKeySample in the cloned samples repository:
cd azure-iot-samples-csharp\provisioning\Samples\device\SymmetricKeySample
-
In the SymmetricKeySample folder, open Parameters.cs in a text editor. This file shows the parameters that are supported by the sample. Only the first three required parameters will be used in this article when running the sample. Review the code in this file. No changes are needed.
Parameter Required Description --s
or--IdScope
True The ID Scope of the DPS instance --i
or--Id
True The registration ID when using individual enrollment, or the desired device ID when using group enrollment. The registration ID is a case-insensitive string (up to 128 characters long) of alphanumeric characters plus the special characters: '-'
,'.'
,'_'
,':'
. The last character must be alphanumeric or dash ('-'
). The device ID must comply with the Device ID string requirements.--p
or--PrimaryKey
True The primary key of the individual or group enrollment. --e
or--EnrollmentType
False The type of enrollment: Individual
orGroup
. Defaults toIndividual
--g
or--GlobalDeviceEndpoint
False The global endpoint for devices to connect to. Defaults to global.azure-devices-provisioning.net
--t
or--TransportType
False The transport to use to communicate with the device provisioning instance. Defaults to Mqtt
. Possible values includeMqtt
,Mqtt_WebSocket_Only
,Mqtt_Tcp_Only
,Amqp
,Amqp_WebSocket_Only
,Amqp_Tcp_only
, andHttp1
. -
In the SymmetricKeySample folder, open ProvisioningDeviceClientSample.cs in a text editor. This file shows how the SecurityProviderSymmetricKey class is used along with the ProvisioningDeviceClient class to provision your simulated symmetric key device. Review the code in this file. No changes are needed.
-
Build and run the sample code using the following command:
- Replace
<id-scope>
with the ID Scope that you copied in step 2. - Replace
<registration-id>
with the Registration ID that you copied from the device enrollment. - Replace
<primarykey>
with the Primary Key that you copied from the device enrollment.
dotnet run --s <id-scope> --i <registration-id> --p <primarykey>
- Replace
-
You should now see something similar to the following output. A "TestMessage" string is sent to the hub as a test message.
D:\azure-iot-samples-csharp\provisioning\Samples\device\SymmetricKeySample>dotnet run --s 0ne00000A0A --i symm-key-csharp-device-01 --p sbDDeEzRuEuGKag+kQKV+T1QGakRtHpsERLP0yPjwR93TrpEgEh/Y07CXstfha6dhIPWvdD1nRxK5T0KGKA+nQ== Initializing the device provisioning client... Initialized for registration Id symm-key-csharp-device-01. Registering with the device provisioning service... Registration status: Assigned. Device csharp-device-01 registered to ExampleIoTHub.azure-devices.net. Creating symmetric key authentication for IoT Hub... Testing the provisioned device with IoT Hub... Sending a telemetry message... Finished. Enter any key to exit.
::: zone-end
::: zone pivot="programming-language-nodejs"
The sample provisioning code accomplishes the following tasks, in order:
-
Authenticates your device with your Device Provisioning resource using the following four parameters:
PROVISIONING_HOST
PROVISIONING_IDSCOPE
PROVISIONING_REGISTRATION_ID
PROVISIONING_SYMMETRIC_KEY
-
Assigns the device to the IoT hub already linked to your Device Provisioning Service instance.
-
Sends a test telemetry message to the IoT hub.
To update and run the provisioning sample with your device information:
-
In the main menu of your Device Provisioning Service, select Overview.
-
Copy the ID Scope and Global device endpoint values.
:::image type="content" source="./media/quick-create-simulated-device-symm-key/copy-id-scope-and-global-device-endpoint.png" alt-text="Extract Device Provisioning Service endpoint information":::
-
Open a command prompt for executing Node.js commands, and go to the following directory:
cd azure-iot-sdk-node/provisioning/device/samples
-
In the provisioning/device/samples folder, open register_symkey.js and review the code. Notice that the sample code sets a custom payload:
provisioningClient.setProvisioningPayload({a: 'b'});
You may comment out this code, as it is not needed with for this quick start. A custom payload would be required you wanted to use a custom allocation function to assign your device to an IoT Hub. For more information, see Tutorial: Use custom allocation policies.
The
provisioningClient.register()
method attempts the registration of your device.No further changes are needed.
-
In the command prompt, run the following commands to set environment variables used by the sample:
- Replace
<provisioning-global-endpoint>
with the Global device endpoint that you copied in step 2. - Replace
<id-scope>
with the ID Scope that you copied in step 2. - Replace
<registration-id>
with the Registration ID that you copied from the device enrollment. - Replace
<primarykey>
with the Primary Key that you copied from the device enrollment.
set PROVISIONING_HOST=<provisioning-global-endpoint>
set PROVISIONING_IDSCOPE=<id-scope>
set PROVISIONING_REGISTRATION_ID=<registration-id>
set PROVISIONING_SYMMETRIC_KEY=<primarykey>
- Replace
-
Build and run the sample code using the following commands:
npm install
node register_symkey.js
-
You should now see something similar to the following output. A "Hello World" string is sent to the hub as a test message.
D:\azure-iot-samples-csharp\provisioning\Samples\device\SymmetricKeySample>dotnet run --s 0ne00000A0A --i symm-key-csharp-device-01 --p sbDDeEzRuEuGKag+kQKV+T1QGakRtHpsERLP0yPjwR93TrpEgEh/Y07CXstfha6dhIPWvdD1nRxK5T0KGKA+nQ== Initializing the device provisioning client... Initialized for registration Id symm-key-csharp-device-01. Registering with the device provisioning service... Registration status: Assigned. Device csharp-device-01 registered to ExampleIoTHub.azure-devices.net. Creating symmetric key authentication for IoT Hub... Testing the provisioned device with IoT Hub... Sending a telemetry message... Finished. Enter any key to exit.
::: zone-end
::: zone pivot="programming-language-python"
The sample provisioning code accomplishes the following tasks, in order:
-
Authenticates your device with your Device Provisioning resource using the following four parameters:
PROVISIONING_HOST
PROVISIONING_IDSCOPE
PROVISIONING_REGISTRATION_ID
PROVISIONING_SYMMETRIC_KEY
-
Assigns the device to the IoT hub already linked to your Device Provisioning Service instance.
-
Sends a test telemetry message to the IoT hub.
To update and run the provisioning sample with your device information:
-
In the main menu of your Device Provisioning Service, select Overview.
-
Copy the ID Scope and Global device endpoint values.
:::image type="content" source="./media/quick-create-simulated-device-symm-key/copy-id-scope-and-global-device-endpoint.png" alt-text="Extract Device Provisioning Service endpoint information":::
-
Open a command prompt and go to the directory where the sample file, provision_symmetric_key.py, is located.
cd azure-iot-sdk-python\azure-iot-device\samples\async-hub-scenarios
-
In the command prompt, run the following commands to set environment variables used by the sample:
- Replace
<provisioning-global-endpoint>
with the Global device endpoint that you copied in step 2. - Replace
<id-scope>
with the ID Scope that you copied in step 2. - Replace
<registration-id>
with the Registration ID that you copied from the device enrollment. - Replace
<primarykey>
with the Primary Key that you copied from the device enrollment.
set PROVISIONING_HOST=<provisioning-global-endpoint>
set PROVISIONING_IDSCOPE=<id-scope>
set PROVISIONING_REGISTRATION_ID=<registration-id>
set PROVISIONING_SYMMETRIC_KEY=<primarykey>
- Replace
-
Install the azure-iot-device library by running the following command.
pip install azure-iot-device
-
Run the Python sample code in provision_symmetric_key.py.
python provision_symmetric_key.py
-
You should now see something similar to the following output. Some example wind speed telemetry messages are also sent to the hub as a test.
D:\azure-iot-sdk-python\azure-iot-device\samples\async-hub-scenarios>python provision_symmetric_key.py RegistrationStage(RequestAndResponseOperation): Op will transition into polling after interval 2. Setting timer. The complete registration result is python-device-008 docs-test-iot-hub.azure-devices.net initialAssignment null Will send telemetry from the provisioned device sending message #8 sending message #9 sending message #3 sending message #10 sending message #4 sending message #2 sending message #6 sending message #7 sending message #1 sending message #5 done sending message #8 done sending message #9 done sending message #3 done sending message #10 done sending message #4 done sending message #2 done sending message #6 done sending message #7 done sending message #1 done sending message #5
::: zone-end
::: zone pivot="programming-language-java"
The sample provisioning code accomplishes the following tasks, in order:
-
Authenticates your device with your Device Provisioning resource using the following four parameters:
GLOBAL_ENDPOINT
SCOPE_ID
REGISTRATION_ID
SYMMETRIC_KEY
-
Assigns the device to the IoT hub already linked to your Device Provisioning Service instance.
-
Sends a test telemetry message to the IoT hub.
To update and run the provisioning sample with your device information:
-
In the main menu of your Device Provisioning Service, select Overview.
-
Copy the ID Scope and Global device endpoint values. These are your
SCOPE_ID
andGLOBAL_ENDPOINT
respectively.:::image type="content" source="./media/quick-create-simulated-device-symm-key/copy-id-scope-and-global-device-endpoint.png" alt-text="Extract Device Provisioning Service endpoint information":::
-
Open the Java device sample code for editing. The full path to the device sample code is:
azure-iot-sdk-java/provisioning/provisioning-samples/provisioning-symmetrickey-individual-sample/src/main/java/samples/com/microsoft/azure/sdk/iot/ProvisioningSymmetricKeyIndividualEnrollmentSample.java
-
Set the value of the following variables for your DPS and device enrollment:
- Replace
<id-scope>
with the ID Scope that you copied in step 2. - Replace
<provisioning-global-endpoint>
with the Global device endpoint that you copied in step 2. - Replace
<registration-id>
with the Registration ID that you copied from the device enrollment. - Replace
<primarykey>
with the Primary Key that you copied from the device enrollment.
private static final String SCOPE_ID = "<id-scope>"; private static final String GLOBAL_ENDPOINT = "<provisioning-global-endpoint>"; private static final String SYMMETRIC_KEY = "<primarykey>"; private static final String REGISTRATION_ID = "<registration-id>";
- Replace
-
Open a command prompt for building. Go to the provisioning sample project folder of the Java SDK repository.
cd azure-iot-sdk-java\provisioning\provisioning-samples\provisioning-symmetrickey-individual-sample
-
Build the sample.
mvn clean install
-
Go to the
target
folder and execute the created.jar
file. In thejava
command, replace the{version}
placeholder with the version in the.jar
filename on your machine.cd target java -jar ./provisioning-symmetrickey-individual-sample-{version}-with-deps.jar
-
You should now see something similar to the following output.
Starting... Beginning setup. Initialized a ProvisioningDeviceClient instance using SDK version 1.11.0 Starting provisioning thread... Waiting for Provisioning Service to register Opening the connection to device provisioning service... Connection to device provisioning service opened successfully, sending initial device registration message Authenticating with device provisioning service using symmetric key Waiting for device provisioning service to provision this device... Current provisioning status: ASSIGNING Device provisioning service assigned the device successfully IotHUb Uri : <Your IoT hub name>.azure-devices.net Device ID : java-device-007 Sending message from device to IoT Hub... Press any key to exit... Message received! Response status: OK_EMPTY
::: zone-end
-
Go to the Azure portal.
-
On the left-hand menu or on the portal page, select All resources.
-
Select the IoT hub to which your device was assigned.
-
In the Explorers menu, select IoT Devices.
-
If your device was provisioned successfully, the device ID should appear in the list, with Status set as enabled. If you don't see your device, select Refresh at the top of the page.
:::zone pivot="programming-language-ansi-c"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/hub-registration.png" alt-text="Device is registered with the IoT hub":::
::: zone-end :::zone pivot="programming-language-csharp"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/hub-registration-csharp.png" alt-text="CSharp device is registered with the IoT hub":::
::: zone-end
:::zone pivot="programming-language-nodejs"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/hub-registration-nodejs.png" alt-text="Node.js device is registered with the IoT hub":::
::: zone-end
:::zone pivot="programming-language-python"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/hub-registration-python.png" alt-text="Python device is registered with the IoT hub":::
::: zone-end
::: zone pivot="programming-language-java"
:::image type="content" source="./media/quick-create-simulated-device-symm-key/hub-registration-java.png" alt-text="Java device is registered with the IoT hub":::
::: zone-end
Note
If you changed the initial device twin state from the default value in the enrollment entry for your device, it can pull the desired twin state from the hub and act accordingly. For more information, see Understand and use device twins in IoT Hub.
If you plan to continue working on and exploring the device client sample, don't clean up the resources created in this quickstart. If you don't plan to continue, use the following steps to delete all resources created by this quickstart.
-
Close the device client sample output window on your machine.
-
From the left-hand menu in the Azure portal, select All resources.
-
Select your Device Provisioning Service.
-
In the Settings menu, select Manage enrollments.
-
Select the Individual Enrollments tab.
-
Select the check box next to the REGISTRATION ID of the device you enrolled in this quickstart.
-
At the top of the page, select Delete.
-
From the left-hand menu in the Azure portal, select All resources.
-
Select your IoT hub.
-
In the Explorers menu, select IoT devices.
-
Select the check box next to the DEVICE ID of the device you registered in this quickstart.
-
At the top of the page, select Delete.
Provision an X.509 certificate device:
[!div class="nextstepaction"] Quickstart - Provision an X.509 device using the Azure IoT C SDK