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.
-
In the Azure portal, navigate to your IoT hub.
-
Go to IoT Edge under Automatic Device Management and select your IoT Edge device.
-
Select Set Modules.
-
In the Deployment Modules section of the Add Modules step, click Add then select IoT Edge Module.
-
In the Name field, enter
tempSensor
. -
In the Image URI field, enter
mcr.microsoft.com/azureiotedge-simulated-temperature-sensor:1.0
. -
Leave the other settings unchanged, and select Save.
-
Back in the Add Modules step, select Next.
-
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" } }
-
In the Review Deployment step, select Submit.
-
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.