I have an event grid subscription that I would like to have subscribed to multiple event types. In the event types field if I specify:
EntityArchivedEvent
and then submit an event with that type the event matches and the associated azure function fires as expected.
However if I attempt to add another event type to the Event Types field as follows:
EntityArchivedEvent,EntityHeaderCreatedEvent
And then I send the exact same event as above of type EntityArchivedEvent now the event fails to match and shows as unmatched in the event subscriptions metrics. Not even trying to get it to match to the new event type yet, just verifying that the original one still works.
According to the spec it appears that Entity Types field is an array and should support multiple values. How do I specify those properly in the portal blade when editing subscriptions?