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/event-grid/edge/pub-sub-events-webhook-local.md
+11-32Lines changed: 11 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,8 +59,7 @@ A deployment manifest is a JSON document that describes which modules to deploy,
59
59
```json
60
60
{
61
61
"Env": [
62
-
"inbound__clientAuth__clientCert__enabled=false",
63
-
"outbound__webhook__httpsOnly=false"
62
+
"inbound__clientAuth__clientCert__enabled=false"
64
63
],
65
64
"HostConfig": {
66
65
"PortBindings": {
@@ -74,21 +73,17 @@ A deployment manifest is a JSON document that describes which modules to deploy,
74
73
}
75
74
```
76
75
1. Click **Save**
77
-
1. Continue to the next section to add the Azure Functions module before deploying them together.
76
+
1. Continue to the next section to add the Azure Event Grid Subscriber module before deploying them together.
78
77
79
78
>[!IMPORTANT]
80
-
> In this tutorial, you will deploy the Event Grid module with client authentication disabled and allow HTTP subscribers. For production workloads, we recommend that you enable the client authentication and allow only HTTPs subscribers. For more information on how to configure Event Grid module securely, see [Security and authentication](security-authentication.md).
79
+
> In this tutorial, you will deploy the Event Grid module with client authentication disabled. For production workloads, we recommend that you enable the client authentication. For more information on how to configure Event Grid module securely, see [Security and authentication](security-authentication.md).
81
80
>
82
81
> If you are using an Azure VM as an edge device, add an inbound port rule to allow inbound traffic on the port 4438. For instructions on adding the rule, see [How to open ports to a VM](../../virtual-machines/windows/nsg-quickstart-portal.md).
83
82
84
83
85
-
## Deploy Azure Function IoT Edge module
86
-
87
-
This section shows you how to deploy the Azure Functions IoT module, which would act as an Event Grid subscriber to which events can be delivered.
88
-
89
-
>[!IMPORTANT]
90
-
>In this section, you will deploy a sample Azure Function-based subscribing module. It can of course be any custom IoT Module that can listen for HTTP POST requests.
84
+
## Deploy Event Grid Subscriber IoT Edge module
91
85
86
+
This section shows you how to deploy another IoT module which would act as an event handler to which events can be delivered.
92
87
93
88
### Add modules
94
89
@@ -97,23 +92,8 @@ This section shows you how to deploy the Azure Functions IoT module, which would
97
92
1. Provide the name, image, and container create options of the container:
> The **endpointType** property specifies that the subscriber is a **Webhook**. The **endpointUrl** specifies the URL at which the subscriber is listening for events. This URL corresponds to the Azure Function sample you deployed earlier.
177
+
> The **endpointType** property specifies that the subscriber is a **Webhook**. The **endpointUrl** specifies the URL at which the subscriber is listening for events. This URL corresponds to the Azure Subscriber sample you deployed earlier.
198
178
2. Run the following command to create a subscription for the topic. Confirm that you see the HTTP status code is `200 OK`.
199
179
200
180
```sh
@@ -218,7 +198,7 @@ Subscribers can register for events published to a topic. To receive any event,
Copy file name to clipboardExpand all lines: articles/event-grid/edge/react-blob-storage-events-locally.md
+12-33Lines changed: 12 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,8 @@ A deployment manifest is a JSON document that describes which modules to deploy,
57
57
```json
58
58
{
59
59
"Env": [
60
-
"inbound:serverAuth:tlsPolicy=enabled",
61
-
"inbound:clientAuth:clientCert:enabled=false",
62
-
"outbound:webhook:httpsOnly=false"
60
+
"inbound__serverAuth__tlsPolicy=enabled",
61
+
"inbound__clientAuth__clientCert__enabled=false"
63
62
],
64
63
"HostConfig": {
65
64
"PortBindings": {
@@ -74,18 +73,15 @@ A deployment manifest is a JSON document that describes which modules to deploy,
74
73
```
75
74
76
75
1. Click **Save**
77
-
1. Continue to the next section to add the Azure Functions module
76
+
1. Continue to the next section to add the Azure Event Grid Subscriber module before deploying them together.
78
77
79
78
>[!IMPORTANT]
80
-
> In this tutorial, you will learn to deploy the Event Grid module to allow both HTTP/HTTPs requests, client authentication disabled and allow HTTP subscribers. For production workloads, we recommend that you enable only HTTPs requests and subscribers with client authentication enabled. For more information on how to configure Event Grid module securely, see [Security and authentication](security-authentication.md).
79
+
> In this tutorial, you will learn to deploy the Event Grid module to allow both HTTP/HTTPs requests, client authentication disabled. For production workloads, we recommend that you enable only HTTPs requests and subscribers with client authentication enabled. For more information on how to configure Event Grid module securely, see [Security and authentication](security-authentication.md).
81
80
82
81
83
-
## Deploy Azure Function IoT Edge module
82
+
## Deploy Event Grid Subscriber IoT Edge module
84
83
85
-
This section shows you how to deploy the Azure Functions IoT module, which would act as an Event Grid subscriber to which events can be delivered.
86
-
87
-
>[!IMPORTANT]
88
-
>In this section, you will deploy a sample Azure Function-based subscribing module. It can of course be any custom IoT Module that can listen for HTTP POST requests.
84
+
This section shows you how to deploy another IoT module which would act as an event handler to which events can be delivered.
89
85
90
86
### Add modules
91
87
@@ -94,23 +90,8 @@ This section shows you how to deploy the Azure Functions IoT module, which would
94
90
1. Provide the name, image, and container create options of the container:
0 commit comments