Skip to content

Commit 66c3212

Browse files
final cleanup
1 parent d27da1a commit 66c3212

13 files changed

+18
-14
lines changed

articles/azure-functions/TOC.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,12 @@
9393
href: functions-create-private-site-access.md
9494
- name: Use an outbound NAT gateway
9595
href: functions-how-to-use-nat-gateway.md
96-
- name: Use identity for host connections
97-
href: functions-identity-based-connections-tutorial.md
98-
- name: Use identity for trigger and binding connections
99-
href: functions-identity-based-connections-tutorial-2.md
96+
- name: Identity-based connections
97+
items:
98+
- name: Use identity for host connections
99+
href: functions-identity-based-connections-tutorial.md
100+
- name: Use identity for triggers and bindings
101+
href: functions-identity-based-connections-tutorial-2.md
100102
- name: Image resize with Event Grid
101103
href: ../event-grid/resize-images-on-storage-blob-upload-event.md?toc=%2fazure%2fazure-functions%2ftoc.json
102104
- name: Create a serverless web app

articles/azure-functions/functions-identity-based-connections-tutorial-2.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Tutorial - Use identity-based connections instead of secrets with triggers and bindings
3-
description: Learn how to use identity-based connections instead of connection strings with a Service Bus queue trigger, and how to use managed identities locally.
2+
title: Use identity-based connections instead of secrets with triggers and bindings
3+
description: Learn how to use identity-based connections instead of connection strings with a Service Bus queue trigger
44
ms.topic: tutorial
55
ms.date: 10/20/2021
66
#Customer intent: As a function developer, I want to learn how to use managed identities so that I can avoid having to handle connection strings in my application settings.
@@ -29,9 +29,13 @@ In Part 2, you'll learn how to:
2929
3030
## Prerequisite
3131

32-
> [!div class="checklist"]
33-
>
34-
> * 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].
32+
+ 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).
33+
34+
+ The [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download)
35+
36+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 3.x.
37+
38+
+ 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].
3539

3640
## Create a service bus and queue
3741

articles/azure-functions/functions-identity-based-connections-tutorial.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Create a function app that uses identity-based Azure service connections
3-
description: Learn how to use identity-based connections with Azure Functions without having the handle service-specific connection strings.
2+
title: Create a function app without default storage secrets in its definition
3+
description: Learn how to remove Storage connection strings from your function app definition.
44
ms.topic: tutorial
55
ms.date: 10/20/2021
66
#Customer intent: As a function developer, I want to learn how to use managed identities so that I can avoid having to handle connection strings in my application settings.
@@ -137,7 +137,7 @@ The portal experience for creating a function app does not interact with Azure K
137137

138138
1. In the template page, select **Deploy**, then in the Custom deployment page, select **Edit template**.
139139

140-
:::image type="content" source="./media/functions-identity-connections-tutorial/1-function-create-deploy.png" alt-text="Screenshot of where to find the deploy button for creating a Function.":::
140+
:::image type="content" source="./media/functions-identity-connections-tutorial/function-app-template-deploy-button.png" alt-text="Screenshot of where to find the deploy button at the top of the template screen.":::
141141

142142
### Edit the template
143143

@@ -300,8 +300,6 @@ Next you will update your function app to use its system-assigned identity when
300300

301301
1. Under **Settings**, select **Configuration**.
302302

303-
:::image type="content" source="./media/functions-identity-connections-tutorial/13-update-azurewebjobsstorage.png" alt-text="Screenshot of how to update the AzureWebJobsStorage app setting.":::
304-
305303
1. Select the **Edit** button next to the **AzureWebJobsStorage** application setting, and change it based on the following values.
306304

307305
| Option | Suggested value | Description |

0 commit comments

Comments
 (0)