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/service-connector/tutorial-csharp-webapp-storage-cli.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
---
2
-
title: Deploy a webapp connected to Azure Blob Storage
2
+
title: Deploy a Webapp Connected to Azure Blob Storage
3
3
description: This tutorial guides you through creating and deploying a web application that connects to Azure Blob Storage using Service Connector.
4
4
author: maud-lv
5
5
ms.author: malev
6
6
ms.service: service-connector
7
7
ms.topic: tutorial
8
-
ms.date: 12/18/2024
8
+
ms.date: 12/02/2025
9
9
ms.devlang: azurecli
10
10
ms.custom: devx-track-azurecli
11
11
---
12
12
13
13
# Tutorial: Deploy a web application connected to Azure Blob Storage with Service Connector
14
14
15
-
In this tutorial, you learn how to access Azure Blob Storage for a web app (not a signed-in user) running on Azure App Service by using managed identities. In this tutorial, you'll use the Azure CLI to complete the following tasks:
15
+
In this tutorial, you learn how to access Azure Blob Storage for a web app (not a signed-in user) running on Azure App Service by using managed identities. In this tutorial, you use the Azure CLI to complete the following tasks:
16
16
17
17
> [!div class="checklist"]
18
18
>
@@ -22,7 +22,7 @@ In this tutorial, you learn how to access Azure Blob Storage for a web app (not
22
22
23
23
## Prerequisites
24
24
25
-
* An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
25
+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
@@ -64,12 +64,12 @@ In this tutorial, you learn how to access Azure Blob Storage for a web app (not
64
64
65
65
1. In the terminal, make sure you're in the *WebAppStorageMISample* repository folder that contains the app code.
66
66
67
-
1. Create an App Service app (the host process) with the [`az webapp up`](/cli/azure/webapp#az-webapp-up) command below and replace the placeholders with your own data:
67
+
1. Create an App Service app (the host process) with the [`az webapp up`](/cli/azure/webapp#az-webapp-up) command and replace the following placeholders with your own data:
68
68
69
-
* For the `--location` argument, use a [region supported by Service Connector](concept-region-support.md).
70
-
* Replace `<app-name>` with a unique name across Azure. The server endpoint is `https://<app-name>.azurewebsites.net`. Allowed characters for `<app-name>` are `A`-`Z`, `0`-`9`, and `-`. A good pattern is to use a combination of your company name and an app identifier.
69
+
- For the `--location` argument, use a [region supported by Service Connector](concept-region-support.md).
70
+
- Replace `<app-name>` with a unique name across Azure. The server endpoint is `https://<app-name>.azurewebsites.net`. Allowed characters for `<app-name>` are `A`-`Z`, `0`-`9`, and `-`. A good pattern is to use a combination of your company name and an app identifier.
71
71
72
-
```azurecli
72
+
```azurecli
73
73
az webapp up --name <app-name> --sku B1 --location eastus --resource-group ServiceConnector-tutorial-rg
Replace the following placeholders with your own data:
95
95
96
-
* Replace `<app-name>` with the web app name you used in step 3.
97
-
* Replace `<storage-name>` with the storage app name you used in step 4.
96
+
- Replace `<app-name>` with the web app name you used in step 3.
97
+
- Replace `<storage-name>` with the storage app name you used in step 4.
98
98
99
99
> [!NOTE]
100
100
> If you see the error message "The subscription is not registered to use Microsoft.ServiceLinker", run `az provider register -n Microsoft.ServiceLinker` to register the Service Connector resource provider and run the connection command again.
@@ -111,7 +111,7 @@ The sample code is a web application. Each time you refresh the index page, the
111
111
112
112
## Next step
113
113
114
-
To learn more about Service Connector, read the guide below.
114
+
To learn more about Service Connector, read the following guide.
0 commit comments