Kainat
Kainat

Reputation: 73

Create an Event when storage account is updated it will trigger an event and send a message in storage queue Azure Portal

I want to create an Event Grid which will trigger an event to storage queue if any change occurs in Storage Account.

In short, if any storage account is updated it will trigger an event and send a message in storage queue - is this possible in Azure?

Upvotes: 0

Views: 271

Answers (2)

Roman Kiss
Roman Kiss

Reputation: 8235

You should subscribe to the resource group. The document Azure resource group as an Event Grid source described all details.

Also, have a look at the document Storage queue as an event handler for Azure Event Grid events for receiving the filtered events emitted by resource group.

Upvotes: 1

Markus Meyer
Markus Meyer

Reputation: 3937

There's no Event source for S3.
One way is to use AWS Lambda and send a request to Event Grid:

Post to custom topic for Azure Event Grid

Upvotes: 0

Related Questions