Skip to content

Commit 04972ed

Browse files
committed
Add storage extension requirement
1 parent 28b38cb commit 04972ed

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/azure-functions/functions-event-grid-blob-trigger.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ zone_pivot_groups: programming-languages-set-functions-lang-workers
1313

1414
Earlier versions of the Blob Storage trigger for Azure Functions polled the container for updates, which often resulted in delayed execution. By using the latest version of the extension, you can reduce latency by instead triggering on an event subscription to the same blob container. The event subscription uses Event Grid to forward changes in the blob container as events for your function to consume. This article demonstrates how to use Visual Studio Code to locally develop a function that runs based events raised when a blob is added to a container. You'll locally verify the function before deploying your project to Azure.
1515

16-
> [!NOTE]
17-
> Both the Blob Storage trigger using an event subscription and the Storage Extension for Visual Studio Code are currently in preview.
18-
1916
> [!div class="checklist"]
2017
> * Create a general storage v2 account in Azure Storage.
2118
> * Create a container in blob storage.
@@ -43,6 +40,11 @@ Earlier versions of the Blob Storage trigger for Azure Functions polled the cont
4340
::: zone-end
4441
+ The [ngrok](https://ngrok.com/) utility, which provides a way for Azure to call into your locally running function.
4542

43+
+ The [Azure Storage extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurestorage) for Visual Studio Code.
44+
45+
> [!NOTE]
46+
> The Storage Extension for Visual Studio Code is currently in preview.
47+
4648
## Create a storage account
4749

4850
Using an event subscription to Azure Storage requires you to use a general-purpose v2 storage account. With the Azure Storage extension installed, you can create this kind of storage account by default from your Visual Studio Code project.

0 commit comments

Comments
 (0)