davide.ferrari
davide.ferrari

Reputation: 221

How to catch Device Provisioning Event with Azure Logic App?

I'm trying to implement a list of events with Azure IoT Suite:

Is it possible the point number 3? I'm looking to the actions of the Azure Logic App but I don't find anything. Otherwise, anyone known other alternatives?

Thanks a lot for the suggestions!

Upvotes: 0

Views: 152

Answers (1)

silent
silent

Reputation: 16108

You can use Event Grid for this:

  1. IoT Hub emits Device Created events (plus other events) and sends them to Event Grid
  2. Logic App is triggered by new events from the Grid.
  3. Your Logic App is doing your custom magic :)

If your logic app is doing nothing else apart from invoking the Function, your Function could also directly being invoked by the Event Grid.

Upvotes: 2

Related Questions