Skip to content

Commit 5347099

Browse files
Merge pull request #308960 from v-thpra/lf-az-servconnect-003
Q&M: Light Freshness - Service Connector - 3
2 parents f4480ef + e098bf8 commit 5347099

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

articles/service-connector/tutorial-csharp-webapp-storage-cli.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Deploy a webapp connected to Azure Blob Storage
2+
title: Deploy a Webapp Connected to Azure Blob Storage
33
description: This tutorial guides you through creating and deploying a web application that connects to Azure Blob Storage using Service Connector.
44
author: maud-lv
55
ms.author: malev
66
ms.service: service-connector
77
ms.topic: tutorial
8-
ms.date: 12/18/2024
8+
ms.date: 12/02/2025
99
ms.devlang: azurecli
1010
ms.custom: devx-track-azurecli
1111
---
1212

1313
# Tutorial: Deploy a web application connected to Azure Blob Storage with Service Connector
1414

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:
1616

1717
> [!div class="checklist"]
1818
>
@@ -22,7 +22,7 @@ In this tutorial, you learn how to access Azure Blob Storage for a web app (not
2222
2323
## Prerequisites
2424

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).
2626

2727
[!INCLUDE [azure-cli-prepare-your-environment-no-header.md](~/reusable-content/azure-cli/azure-cli-prepare-your-environment-no-header.md)]
2828

@@ -64,12 +64,12 @@ In this tutorial, you learn how to access Azure Blob Storage for a web app (not
6464
6565
1. In the terminal, make sure you're in the *WebAppStorageMISample* repository folder that contains the app code.
6666
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:
6868
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.
7171
72-
```azurecli
72+
```azurecli
7373
az webapp up --name <app-name> --sku B1 --location eastus --resource-group ServiceConnector-tutorial-rg
7474
```
7575
@@ -93,8 +93,8 @@ az webapp connection create storage-blob -g ServiceConnector-tutorial-rg -n <app
9393

9494
Replace the following placeholders with your own data:
9595

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.
9898

9999
> [!NOTE]
100100
> 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
111111

112112
## Next step
113113

114-
To learn more about Service Connector, read the guide below.
114+
To learn more about Service Connector, read the following guide.
115115

116116
> [!div class="nextstepaction"]
117117
> [Service Connector concepts](./concept-service-connector-internals.md)

0 commit comments

Comments
 (0)