Kavrat
Kavrat

Reputation: 87

Azure Key Vault with Logic app, but empty Event section

Why I'm not seeing newly created Logic app in the event section?

I've done everything like in this manual - https://learn.microsoft.com/en-us/azure/key-vault/general/event-grid-logicapps.

And this login app doesn't firing when event is occurred. enter image description here

Upvotes: 0

Views: 605

Answers (2)

Chris Tout
Chris Tout

Reputation: 1

Make sure you've registered Event Grid as a resource provider in the subscription.

https://learn.microsoft.com/en-us/azure/key-vault/general/event-grid-logicapps

Upvotes: 0

SwethaKandikonda
SwethaKandikonda

Reputation: 8252

After reproducing from our end here is how we could able to add the event subscription manually. Navigate to your Key vault >> Events >> +Event Subscription

enter image description here

Create a new logic app and use the same flow as mentioned in the attached manual. Now navigate to logic app >> properties >> Copy Access Endpoint

enter image description here

Now use the same endpoint in adding the event subscription

enter image description here

RESULT: Now you can check from your event subscriptions

enter image description here

enter image description here


NOTE: Make sure you are creating the logic app in the same location as the key vault and create the flow first before adding the access endpoint during event subscription creation.

Upvotes: 2

Related Questions