You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-edge/quickstart-linux.md
+5-15Lines changed: 5 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Quickstart create an Azure IoT Edge device on Linux | Microsoft Docs
3
3
description: In this quickstart, learn how to create an IoT Edge device on Linux and then deploy prebuilt code remotely from the Azure portal.
4
4
author: PatAltimore
5
5
ms.author: patricka
6
-
ms.date: 01/21/2022
6
+
ms.date: 11/18/2022
7
7
ms.topic: quickstart
8
8
ms.service: iot-edge
9
9
services: iot-edge
@@ -75,7 +75,7 @@ Since IoT Edge devices behave and can be managed differently than typical IoT de
75
75
az iot hub device-identity create --device-id myEdgeDevice --edge-enabled --hub-name {hub_name}
76
76
```
77
77
78
-
If you get an error about iothubowner policy keys, make sure that your Cloud Shell is running the latest version of the azure-iot extension.
78
+
If you get an error about iothubowner policy keys, make sure that your Cloud Shell is running the latest version of the *azure-iot* extension.
79
79
80
80
2. View the connection string for your device, which links your physical device with its identity in IoT Hub. It contains the name of your IoT hub, the name of your device, and then a shared key that authenticates connections between the two. We'll refer to this connection string again in the next section when you set up your IoT Edge device.
81
81
@@ -292,15 +292,6 @@ In **IoT Edge Module Marketplace**, search for and select the `Simulated Tempera
292
292
<!-- iotedge-2020-11 -->
293
293
:::moniker range=">=iotedge-2020-11"
294
294
295
-
Select **Runtime Settings** to open the settings for the edgeHub and edgeAgent modules. This settings section is where you can manage the runtime modules by adding environment variables or changing the create options.
296
-
297
-
Update the **Image** field for both the edgeHub and edgeAgent modules to use the version tag 1.4. For example:
298
-
299
-
*`mcr.microsoft.com/azureiotedge-hub:1.4`
300
-
*`mcr.microsoft.com/azureiotedge-agent:1.4`
301
-
302
-
Select **Save** to apply your changes to the runtime modules.
303
-
304
295
:::moniker-end
305
296
<!--end iotedge-2020-11-->
306
297
@@ -310,13 +301,12 @@ Select **Next: Routes** to continue to the next step of the wizard.
310
301
311
302
### Routes
312
303
313
-
On the **Routes** tab, remove the default route, **route**, and then select **Next: Review + create** to continue to the next step of the wizard.
314
-
315
-
>[!Note]
316
-
>Routes are constructed by using name and value pairs. You should see two routes on this page. The default route, **route**, sends all messages to IoT Hub (which is called `$upstream`). A second route, **SimulatedTemperatureSensorToIoTHub**, was created automatically when you added the module from Azure Marketplace. This route sends all messages from the simulated temperature module to IoT Hub. You can delete the default route because it's redundant in this case.
304
+
A route named *SimulatedTemperatureSensorToIoTHub* was created automatically when you added the module from Azure Marketplace. This route sends all messages from the simulated temperature module to IoT Hub.
317
305
318
306

319
307
308
+
Select **Next: Review + create**.
309
+
320
310
### Review and create
321
311
322
312
Review the JSON file, and then select **Create**. The JSON file defines all of the modules that you deploy to your IoT Edge device. You'll see the **SimulatedTemperatureSensor** module and the two runtime modules, **edgeAgent** and **edgeHub**.
0 commit comments