Skip to content

Example service that receives blob events from event grid using cloud events

Notifications You must be signed in to change notification settings

aroxby-wayscript/azure-event-grid-blob-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

azure-event-grid-blob-example

Example service that receives blob events from event grid using cloud events

SUBSCRIPTION_NAME=azure-event-grid-blob-example
ENDPOINT='[YOUR-DEPLOYMENT_HERE]/hook?secret=fictional-spoon-crispy-waffle'
STORAGE_ACCOUNT_NAME=[YOUR-STORAGE-ACCOUNT-NAME]

STORAGE_ACCOUNT_ID=$(
    az storage account show --name $STORAGE_ACCOUNT_NAME --query id --output tsv
)


az eventgrid event-subscription create \
    --source-resource-id $STORAGE_ACCOUNT_ID \
    --name $SUBSCRIPTION_NAME \
    --endpoint $ENDPOINT \
    --event-delivery-schema cloudeventschemav1_0

About

Example service that receives blob events from event grid using cloud events

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published