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/asc-for-iot/how-to-deploy-edge.md
+30-9Lines changed: 30 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,8 +73,25 @@ There are three steps to create an IoT Edge deployment for Azure Security Center
73
73
1. From the **Add Modules** tab, **Deployment Modules** area, click **AzureSecurityCenterforIoT**.
74
74
75
75
1. Change the **name** to **azureiotsecurity**.
76
-
1. Change the name of **Image URI** to **mcr.microsoft.com/ascforiot/azureiotsecurity:0.0.1**
77
-
76
+
1. Change the **Image URI** to **mcr.microsoft.com/ascforiot/azureiotsecurity:0.0.3**.
77
+
1. Verify the **Container Create Options** value is set to:
78
+
```json
79
+
{
80
+
"NetworkingConfig": {
81
+
"EndpointsConfig": {
82
+
"host": {}
83
+
}
84
+
},
85
+
"HostConfig": {
86
+
"Privileged": true,
87
+
"NetworkMode": "host",
88
+
"PidMode": "host",
89
+
"Binds": [
90
+
"/:/host"
91
+
]
92
+
}
93
+
}
94
+
```
78
95
1. Verify that **Set module twin's desired properties** is selected, and change the configuration object to:
79
96
80
97
``` json
@@ -87,12 +104,16 @@ There are three steps to create an IoT Edge deployment for Azure Security Center
87
104
1. Click **Save**.
88
105
1. Scroll to the bottom of the tab and select **Configure advanced Edge Runtime settings**.
89
106
90
-
>[!Note]
91
-
> Do **not** disable AMQP communication for the IoT Edge Hub.
92
-
> Azure Security Center for IoT module requires AMQP communication with the IoT Edge Hub.
107
+
>[!Note]
108
+
> Do **not** disable AMQP communication for the IoT Edge Hub.
109
+
> Azure Security Center for IoT module requires AMQP communication with the IoT Edge Hub.
93
110
94
-
1. Change the **Image** under **Edge Hub** to **mcr.microsoft.com/ascforiot/edgehub:1.05-preview**.
95
-
111
+
1. Change the **Image** under **Edge Hub** to **mcr.microsoft.com/ascforiot/edgehub:1.0.9-preview**.
112
+
113
+
>[!Note]
114
+
> Azure Security Center for IoT module requires a forked version of IoT Edge Hub, based on SDK version 1.20.
115
+
> By changing IoT Edge Hub image, you are instructing your IoT Edge device to replace the latest stable release with the forked version of IoT Edge Hub, which is not officially supported by the IoT Edge service.
116
+
96
117
1. Verify **Create Options** is set to:
97
118
98
119
``` json
@@ -135,8 +156,8 @@ If you encounter an issue, container logs are the best way to learn about the st
If the minimum required containers are not present, check if your IoT Edge deployment manifest is aligned with the recommended settings. For more information, see [Deploy IoT Edge module](#deployment-using-azure-portal).
0 commit comments