Skip to content

Commit afd3a89

Browse files
Merge pull request #219024 from jlian/main
Remove unnecessary steps
2 parents 2a289d2 + ad02696 commit afd3a89

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

articles/iot-edge/quickstart-linux.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Quickstart create an Azure IoT Edge device on Linux | Microsoft Docs
33
description: In this quickstart, learn how to create an IoT Edge device on Linux and then deploy prebuilt code remotely from the Azure portal.
44
author: PatAltimore
55
ms.author: patricka
6-
ms.date: 01/21/2022
6+
ms.date: 11/18/2022
77
ms.topic: quickstart
88
ms.service: iot-edge
99
services: iot-edge
@@ -75,7 +75,7 @@ Since IoT Edge devices behave and can be managed differently than typical IoT de
7575
az iot hub device-identity create --device-id myEdgeDevice --edge-enabled --hub-name {hub_name}
7676
```
7777

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.
7979

8080
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.
8181

@@ -292,15 +292,6 @@ In **IoT Edge Module Marketplace**, search for and select the `Simulated Tempera
292292
<!-- iotedge-2020-11 -->
293293
:::moniker range=">=iotedge-2020-11"
294294

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-
304295
:::moniker-end
305296
<!--end iotedge-2020-11-->
306297

@@ -310,13 +301,12 @@ Select **Next: Routes** to continue to the next step of the wizard.
310301

311302
### Routes
312303

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.
317305

318306
![Screenshot that shows removing the default route then moving to the next step.](./media/quickstart/delete-route-next-review-create.png)
319307

308+
Select **Next: Review + create**.
309+
320310
### Review and create
321311

322312
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

Comments
 (0)