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/azure-functions/functions-identity-based-connections-tutorial-2.md
+7-18Lines changed: 7 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: Use identity-based connections instead of secrets with triggers and bindings
3
-
titleSuffix: Azure Functions
2
+
title: Use identity-based connections with Azure Functions triggers and bindings
3
+
ms.service: azure-functions
4
4
description: Learn how to use identity-based connections instead of connection strings with a Service Bus queue trigger
5
5
ms.topic: tutorial
6
6
ms.date: 10/20/2021
@@ -13,12 +13,7 @@ This tutorial shows you how to configure Azure Functions to trigger off of Azure
13
13
14
14
While the procedures shown work generally for all languages, this tutorial currently supports C# class library functions on Windows specifically.
15
15
16
-
This tutorial has two parts:
17
-
18
-
1.[Create a function app without default storage secrets in its definition][previous tutorial]
19
-
2. Use identity-based connections instead of secrets with triggers and bindings (this article)
20
-
21
-
In Part 2, you'll learn how to:
16
+
In this tutorial, you'll learn how to:
22
17
23
18
> [!div class="checklist"]
24
19
>
@@ -30,13 +25,7 @@ In Part 2, you'll learn how to:
30
25
31
26
## Prerequisite
32
27
33
-
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
34
-
35
-
+ The [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download)
36
-
37
-
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 3.x.
38
-
39
-
+ Have an existing function app with a system-assigned identity. For steps on how to do this follow part 1 of the tutorial: [Create a function app with identity-based connections][previous tutorial].
28
+
Complete the previous tutorial: [Create a function app with identity-based connections][previous tutorial].
40
29
41
30
## Create a service bus and queue
42
31
@@ -95,7 +84,7 @@ You've granted your function app access to the service bus namespace using manag
95
84
96
85
## Connect to Service Bus in your function app
97
86
98
-
1. In the portal, search for your pre-existing function app. If you completed the [previous tutorial], use that app. You can also browse to it in the **Function App** page.
87
+
1. In the portal, search for the function appyou created in the [previous tutorial], or browse to it in the **Function App** page.
99
88
100
89
1. In your function app, select **Configuration** under **Settings**.
101
90
@@ -206,7 +195,7 @@ In this tutorial, you created a function app with identity-based connections.
0 commit comments