You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/archive-rehydrate-handle-event.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: normesta
6
6
7
7
ms.service: azure-blob-storage
8
8
ms.topic: how-to
9
-
ms.date: 07/30/2024
9
+
ms.date: 08/07/2024
10
10
ms.author: normesta
11
11
ms.reviewer: fryu
12
12
ms.devlang: csharp
@@ -31,6 +31,8 @@ This article shows you how to use [Visual Studio 2019](https://visualstudio.micr
31
31
32
32
An [Azure subscription](../../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing) is required. If you don't already have an account, [create a free one](https://azure.microsoft.com/free/dotnet/) before you begin.
33
33
34
+
A provisioned Microsoft Entra ID [security principal](../../role-based-access-control/overview.md#security-principal) that has been assigned the [Storage Blob Data Contributor](../../role-based-access-control/built-in-roles.md#storage-blob-data-contributor) role, scoped to the storage account, parent resource group, or subscription. See [Assign roles to your Microsoft Entra user account](storage-quickstart-blobs-dotnet.md#assign-roles-to-your-microsoft-entra-user-account).
35
+
34
36
## Create an Azure Function app
35
37
36
38
A function app is an Azure resource that serves as a container for your Azure Functions. You can use a new or existing function app to complete the steps described in this article.
@@ -61,7 +63,8 @@ To learn more about configuring your function app, see [Manage your function app
61
63
62
64
Next, create an Azure Function that will run when a blob is rehydrated in a particular storage account. Follow these steps to create an Azure Function in Visual Studio with C# and .NET Core:
63
65
64
-
1. Launch Visual Studio 2019, and create a new Azure Functions project. For details, follow the instructions described in [Create a function app project](../../azure-functions/functions-create-your-first-function-visual-studio.md#create-a-function-app-project).
66
+
1. Launch Visual Studio 2019. Then, [Sign in and connect your app code to Azure using DefaultAzureCredential](storage-quickstart-blobs-dotnet.md#sign-in-and-connect-your-app-code-to-azure-using-defaultazurecredential).
67
+
1. Create a new Azure Functions project. For details, follow the instructions described in [Create a function app project](../../azure-functions/functions-create-your-first-function-visual-studio.md#create-a-function-app-project).
65
68
1. On the **Create a new Azure Functions application** step, select the following values:
66
69
- By default, the Azure Functions runtime is set to **Azure Functions v3 (.NET Core)**. Microsoft recommends using this version of the Azure Functions runtime.
67
70
- From the list of possible triggers, select **Event Grid Trigger**. For more information on why an Event Grid trigger is the recommended type of trigger for handling a Blob Storage event with an Azure Function, see [Use a function as an event handler for Event Grid events](../../event-grid/handler-functions.md).
@@ -101,9 +104,6 @@ Next, create an Azure Function that will run when a blob is rehydrated in a part
0 commit comments