damienpontifex / azure-iot-sdk-rs

A rust library for connecting devices to Microsoft Azure IoT Hub
MIT License
14 stars 11 forks source link

Allow device provisioning to connect over MQTT if http feature isn't enabled #55

Open damienpontifex opened 3 years ago

damienpontifex commented 3 years ago

To keep a single communication pattern, we should connect to the device provisioning service with MQTT if that is what is being used in the IoT Hub client. See https://docs.microsoft.com/en-us/azure/iot-dps/iot-dps-mqtt-support for reference

This would mean less dependencies when utilising MQTT and a device deployed would only need a single port open for outbound communication if utilising MQTT

damienpontifex commented 3 years ago

First pass of this done with #57