Originally this Function was triggered by BlobStorage
uploads. I changed the Function to now be triggered by EventGridEvents
.
I'm now trying to register an event, but the trigger still shows Azure Blob Storage (myblob)
as the trigger.
I've published the app 2x and refreshed a couple times, no avail.
Ideas?
Here is how I fixed this:
Code+Test
,Test/Run
thenRun
AzureWebJobsStorage
value was incorrect.local.settings.json
rather than a Connection String directly (to keep secrets out of my code)local.settings.json
, changed from the Key Vault Reference to the actual Connection String.Trigger shows correctly
Reverted to Key Vault Reference in
local.settings.json
and republished to test if errors return.Sure enough:
Looks like using Key Vault References as AppSettings is unsupported with EventGrid triggers(?).