You have an Azure IoT solution that includes an Azure IoT Hub named Hub1 and an Azure IoT Edge device named Edge1. Edge1 connects to Hub1.
You need to deploy a temperature module to Edge1.
What should you do?
You have an Azure IoT solution that includes an Azure IoT Hub named Hub1 and an Azure IoT Edge device named Edge1. Edge1 connects to Hub1.
You need to deploy a temperature module to Edge1.
What should you do?
To deploy a temperature module to an Azure IoT Edge device named Edge1, you need to create an IoT Edge deployment manifest that specifies the temperature module and the route to $upstream. Then, use the Azure CLI to apply the deployment manifest to the device. The appropriate command is `az iot edge set-modules --device-id Edge1 --hub-name Hub1 --content deploymentMan1.json` because it effectively sets the module configuration on your IoT Edge device. This method is clearly detailed in the Azure documentation for deploying modules to IoT Edge devices.
D is ok
correct