Skip to content

Commit fb45b78

Browse files
Merge pull request #303281 from TimShererWithAquent/us448924-12
Freshness Edit: Service Connectors
2 parents f0bf0a0 + d709715 commit fb45b78

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

articles/service-connector/quickstart-cli-app-service-connection.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
2-
title: Quickstart - Create a service connection in App Service with the Azure CLI
3-
description: Quickstart showing how to create a service connection in App Service with the Azure CLI
2+
title: "Quickstart: Create a Service Connection in App Service with the Azure CLI"
3+
description: In this quickstart, learn how to create a service connection in App Service with the Azure CLI.
44
author: maud-lv
55
ms.author: malev
66
ms.service: service-connector
77
ms.topic: quickstart
8-
ms.date: 11/17/2023
8+
ms.date: 07/25/2025
99
ms.devlang: azurecli
1010
ms.custom: devx-track-azurecli, build-2024
11+
#customer intent: As a developer who uses Azure App Service, I want to connect my clusters to other Cloud resources, with Service Connection managing authentication and networking settings.
1112
---
1213
# Quickstart: Create a service connection in App Service with the Azure CLI
1314

14-
This quickstart describes the steps for creating a service connection in Azure App Service with the Azure CLI.
15+
In this quickstart, you create a service connection in Azure App Service with the Azure CLI.
1516

1617
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
1718

@@ -22,16 +23,17 @@ This quickstart describes the steps for creating a service connection in Azure A
2223

2324
## Initial set-up
2425

25-
1. If you're using Service Connector for the first time, start by running the command [az provider register](/cli/azure/provider#az-provider-register) to register the Service Connector resource provider.
26+
1. If you're using Service Connector for the first time, run the command [az provider register](/cli/azure/provider#az-provider-register) to register the Service Connector resource provider.
2627

2728
```azurecli
2829
az provider register -n Microsoft.ServiceLinker
2930
```
3031

3132
> [!TIP]
32-
> You can check if the resource provider has already been registered by running the command `az provider show -n "Microsoft.ServiceLinker" --query registrationState`. If the output is `Registered`, then Service Connector has already been registered.
33+
> You can check if the resource provider is already registered by running the command `az provider show --name "Microsoft.ServiceLinker" --query registrationState`. If the output is `Registered`, then Service Connector is registered.
3334
>
34-
2. Optionally, use the Azure CLI [az webapp connection list-support-types](/cli/azure/webapp/connection#az-webapp-connection-list-support-types) command to get a list of supported target services for App Service.
35+
36+
1. Optionally, use the Azure CLI [az webapp connection list-support-types](/cli/azure/webapp/connection#az-webapp-connection-list-support-types) command to get a list of supported target services for App Service.
3537

3638
```azurecli
3739
az webapp connection list-support-types --output table
@@ -42,9 +44,9 @@ This quickstart describes the steps for creating a service connection in Azure A
4244
#### [Using a managed identity](#tab/Using-Managed-Identity)
4345

4446
> [!IMPORTANT]
45-
> Using Managed Identity requires you have the permission to [Microsoft Entra role assignment](/entra/identity/role-based-access-control/manage-roles-portal). Without this permission, creating a connection will fail. You can ask your subscription owner to grant you this permission or use an access key to create the connection.
47+
> Using Managed Identity requires you have the permission to [Microsoft Entra role assignment](/entra/identity/role-based-access-control/manage-roles-portal). Without this permission, creating a connection fails. You can ask your subscription owner to grant you this permission or use an access key to create the connection.
4648
47-
Use the Azure CLI [az webapp connection](/cli/azure/webapp/connection) command to create a service connection to a Blob Storage with a system-assigned Managed Identity, providing the following information:
49+
Use the Azure CLI [az webapp connection](/cli/azure/webapp/connection) command to create a service connection to a Blob Storage with a system-assigned Managed Identity. Provide the following information:
4850

4951
- The name of the resource group that contains the App Service
5052
- The name of the App Service
@@ -56,14 +58,14 @@ az webapp connection create storage-blob
5658
```
5759

5860
> [!NOTE]
59-
> If you don't have a Blob Storage, you can run `az webapp connection create storage-blob --new --system-identity` to provision a new Blob Storage resource and directly connected it to your App Service instance.
61+
> If you don't have a Blob Storage, run `az webapp connection create storage-blob --new --system-identity` to provision a new Blob Storage resource and directly connected it to your App Service instance.
6062
6163
#### [Using an access key](#tab/Using-access-key)
6264

6365
> [!WARNING]
64-
> Microsoft recommends that you use the most secure authentication flow available. The authentication flow described in this procedure requires a very high degree of trust in the application, and carries risks that are not present in other flows. You should only use this flow when other more secure flows, such as managed identities, aren't viable.
66+
> Microsoft recommends that you use the most secure authentication flow available. The authentication flow described in this procedure requires a very high degree of trust in the application. It carries risks that aren't present in other flows. You should only use this flow when other more secure flows, such as managed identities, aren't viable.
6567
66-
Use the Azure CLI [az webapp connection create](/cli/azure/webapp/connection/create) command to create a service connection to an Azure Blob Storage with an access key, providing the following information:
68+
Use the Azure CLI [az webapp connection create](/cli/azure/webapp/connection/create) command to create a service connection to an Azure Blob Storage with an access key. Provide the following information:
6769

6870
- **Source compute service resource group name:** the resource group name of the App Service.
6971
- **App Service name:** the name of your App Service that connects to the target service.
@@ -90,9 +92,9 @@ Run the Azure CLI [az webapp connection](/cli/azure/webapp/connection) command t
9092
az webapp connection list -g "<your-app-service-resource-group>" -n "<your-app-service-name>" --output table
9193
```
9294

93-
## Next steps
95+
## Related content
9496

95-
Follow the tutorials below to start building your own application with Service Connector.
97+
Build your own application with Service Connector.
9698

9799
> [!div class="nextstepaction"]
98100
> [Tutorial: WebApp + Storage with Azure CLI](./tutorial-csharp-webapp-storage-cli.md)

0 commit comments

Comments
 (0)