pawel.kalisz
pawel.kalisz

Reputation: 1245

Azure EventGrid sending to internal endpoint

Let's assume that I have a blob storage account and a VM in Azure. VM is closed to the world, has no public endpoint, however it is reachable from the inside of Azure Subscription. I would like to notify application that runs on this VM, that new file has been uploaded to my blob storage. I know that I can pass this kind of events using EventGrid. What I don't know is if it is possible to send this event to an internal endpoint, available only from VNET/Subnet.

Upvotes: 2

Views: 658

Answers (1)

4c74356b41
4c74356b41

Reputation: 72151

No, this is not possible unless you create some proxy.

You might achieve something with Azure Automation + hybrid worker combo. EventGrid can publish to Azure Automation.

Upvotes: 2

Related Questions