Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.79 KB

iot-edge-deploy-module.md

File metadata and controls

39 lines (32 loc) · 1.79 KB
title description services author ms.service ms.topic ms.date ms.author ms.custom
include file
include file
iot-edge
kgremban
iot-edge
include
08/14/2018
kgremban
include file

One of the key capabilities of Azure IoT Edge is being able to deploy modules to your IoT Edge devices from the cloud. An IoT Edge module is an executable package implemented as a container. In this section, you deploy a module that generates telemetry for your simulated device.

  1. In the Azure portal, navigate to your IoT hub.

  2. Go to IoT Edge under Automatic Device Management and select your IoT Edge device.

  3. Select Set Modules.

  4. In the Deployment Modules section of the Add Modules step, click Add then select IoT Edge Module.

  5. In the Name field, enter tempSensor.

  6. In the Image URI field, enter mcr.microsoft.com/azureiotedge-simulated-temperature-sensor:1.0.

  7. Leave the other settings unchanged, and select Save.

    Save IoT Edge module after entering name and image URI

  8. Back in the Add Modules step, select Next.

  9. In the Specify routes step, you should have a default route that sends all messages from all modules to IoT Hub. If not, add the following code then select Next.

    {
        "routes": {
            "route": "FROM /messages/* INTO $upstream"
        }
    }
  10. In the Review Deployment step, select Submit.

  11. Return to the device details page and select Refresh. In addition to the edgeAgent module that was created when you first started the service, you should see another runtime module called edgeHub and the tempSensor module listed.

    View tempSensor in list of deployed modules