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/includes/iot-edge-register-device-symmetric.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
ms.topic: include
3
-
ms.date: 1/31/2023
3
+
ms.date: 06/10/2024
4
4
author: PatAltimore
5
5
ms.author: patricka
6
6
ms.service: iot-edge
@@ -43,7 +43,7 @@ Once Azure IoT Edge and Azure IoT Hub extensions are installed, you notice an Az
43
43
Registering a new device is akin to creating an IoT Edge device in the Azure portal. This virtual device is one of the *twins*, whereas the real world device is the other twin. Visual Studio Code can set this up for you through the following steps.
44
44
45
45
1. In the Visual Studio Code Explorer menu, expand the **Azure IoT Hub** section.
46
-
1.Click on the **...** in the **Azure IoT Hub** section header. If you don't see the ellipsis, click on or hover over the header.
46
+
1.Select on the **...** in the **Azure IoT Hub** section header. If you don't see the ellipsis, select or hover over the header.
47
47
1. Select **Create IoT Edge Device**.
48
48
1. In the text box that opens, give your device an ID, for example `my-edge-device-1` (all lowercase), then press enter.
49
49
@@ -85,7 +85,7 @@ The edge-enabled devices that connect to your IoT hub are listed on the **Device
85
85
When you're ready to set up your device, you need the connection string that links your physical device with its identity in the IoT hub. Devices that authenticate with symmetric keys have their connection strings available to copy in the portal. To find your connection string in the portal:
86
86
87
87
1. From the **Devices** page, select the IoT Edge device ID from the list.
88
-
2. Copy the value of either **Primary Connection String** or **Secondary Connection String**. Either key will work.
88
+
2. Copy the value of either **Primary Connection String** or **Secondary Connection String**. Either key works.
89
89
90
90
# [Visual Studio Code](#tab/visual-studio-code)
91
91
@@ -108,7 +108,7 @@ To see all devices in your IoT hub, use the [az iot hub device-identity list](/c
108
108
az iot hub device-identity list --hub-name hub_name_here
109
109
```
110
110
111
-
Any device that is registered as an IoT Edge device will have the property **capabilities.iotEdge** set to **true**. You see a lot of other metadata as JSON output as well, including your device IDs.
111
+
Any device that is registered as an IoT Edge device has the property **capabilities.iotEdge** set to **true**. You see a lot of other metadata as JSON output as well, including your device IDs.
112
112
113
113
When you're ready to set up your device, you need its connection string that links your physical device with its identity in the IoT hub. Use the following [az iot hub device-identity connection-string show](/cli/azure/iot/hub/device-identity/connection-string) command to return the connection string for a single device. Replace `[device_id]` and `[hub_name]` with your own values. The value for the `device-identity` parameter is case-sensitive.
title: Deploy Azure Functions as modules - Azure IoT Edge
3
3
description: In this tutorial, you develop an Azure Function as an IoT Edge module, then deploy it to an edge device.
4
4
author: PatAltimore
5
5
6
6
ms.author: patricka
7
-
ms.date: 3/22/2023
7
+
ms.date: 06/10/2024
8
8
ms.topic: tutorial
9
9
ms.service: iot-edge
10
10
services: iot-edge
@@ -49,7 +49,7 @@ To develop an IoT Edge module with Azure Functions, install additional prerequis
49
49
50
50
## Create a function project
51
51
52
-
The Azure IoT Edge for Visual Studio Code that you installed in the prerequisites provides management capabilities as well as some code templates. In this section, you use Visual Studio Code to create an IoT Edge solution that contains an Azure Function.
52
+
The Azure IoT Edge for Visual Studio Code that you installed in the prerequisites provides management capabilities and some code templates. In this section, you use Visual Studio Code to create an IoT Edge solution that contains an Azure Function.
53
53
54
54
### Create a new project
55
55
@@ -84,7 +84,7 @@ The IoT Edge extension in Visual Studio Code tries to pull your container regist
84
84
85
85
### Set target architecture to AMD64
86
86
87
-
Running Azure Functions modules on IoT Edge is supported only on Linux AMD64 based containers. The default target architecture for Visual Studio Code is Linux AMD64, but we will set it explicitly to Linux AMD64 here.
87
+
Running Azure Functions modules on IoT Edge is supported only on Linux AMD64 based containers. The default target architecture for Visual Studio Code is Linux AMD64, but we set it explicitly to Linux AMD64 here.
88
88
89
89
1. Open the command palette and search for **Azure IoT Edge: Set Default Target Platform for Edge Solution**.
90
90
@@ -210,7 +210,7 @@ You can use the Azure portal to deploy your Function module to an IoT Edge devic
210
210
211
211
3. Browse to the solution folder that contains the **CSharpFunction**. Open the config folder, select the **deployment.amd64.json** file, and then choose **Select Edge Deployment Manifest**.
212
212
213
-
4. Under your device, expand **Modules** to see a list of deployed and running modules. Click the refresh button. You should see the new **CSharpFunction** running along with the **SimulatedTemperatureSensor** module and the **$edgeAgent** and **$edgeHub**.
213
+
4. Under your device, expand **Modules** to see a list of deployed and running modules. Select the refresh button. You should see the new **CSharpFunction** running along with the **SimulatedTemperatureSensor** module and the **$edgeAgent** and **$edgeHub**.
214
214
215
215
It may take a few moments for the new modules to show up. Your IoT Edge device has to retrieve its new deployment information from IoT Hub, start the new containers, and then report the status back to IoT Hub.
Copy file name to clipboardExpand all lines: articles/iot-edge/tutorial-nested-iot-edge.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
-
title: Tutorial - Create a hierarchy of Azure IoT Edge devices
3
-
description: This tutorial shows you how to create a hierarchical structure of IoT Edge devices with secure communication. This IoT Edge configuration is also known as nested edge.
2
+
title: Create a hierarchy of Azure IoT Edge devices
3
+
description: This tutorial shows you how to create a hierarchical structure of IoT Edge devices with secure communication. The configuration is also known as nested edge.
0 commit comments