| title | Tutorial: .NET connect to Azure services securely with Key Vault |
|---|---|
| description | Learn how to secure connectivity to back-end Azure services that don't support managed identity natively from a .NET web app. |
| ms.devlang | csharp |
| ms.topic | tutorial |
| ms.date | 10/26/2021 |
| author | cephalin |
| ms.author | cephalin |
| ms.reviewer | jordanselig |
| ms.custom | devx-track-azurecli, devx-track-dotnet, AppServiceConnectivity |
| ms.service | azure-app-service |
[!INCLUDE tutorial-content-above-code]
Clone the sample repository locally and deploy the sample application to App Service. Replace <app-name> with a unique name.
# Save app name as variable for convenience
appName=<app-name>
# Clone sample application
git clone https://github.com/Azure-Samples/app-service-language-detector.git
cd app-service-language-detector/dotnet
az webapp up --sku F1 --resource-group $groupName --name $appName --plan $appName --location $region
[!INCLUDE tutorial-content-below-code]