From 50a34f5000559ca6868c136e2f082e01af8d2e9f Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 19 Nov 2024 08:36:50 -0500 Subject: [PATCH] Add Key Vault approach for client secret (#33934) --- .../security/blazor-web-app-with-entra.md | 132 ++++++++++++++++-- 1 file changed, 118 insertions(+), 14 deletions(-) diff --git a/aspnetcore/blazor/security/blazor-web-app-with-entra.md b/aspnetcore/blazor/security/blazor-web-app-with-entra.md index e35eac766230..d8fcf6f2c566 100644 --- a/aspnetcore/blazor/security/blazor-web-app-with-entra.md +++ b/aspnetcore/blazor/security/blazor-web-app-with-entra.md @@ -59,20 +59,6 @@ This section explains how to configure the sample app. In the app's registration in the Entra or Azure portal, use a **Web** platform configuration with a **Redirect URI** of `https://localhost/signin-oidc` (a port isn't required). Confirm that **ID tokens** and access tokens under **Implicit grant and hybrid flows** are **not** selected. The OpenID Connect handler automatically requests the appropriate tokens using the code returned from the authorization endpoint. -### Establish the client secret - -Use the [Secret Manager tool](xref:security/app-secrets) to store the server app's client secret under the configuration key `AzureAd:ClientSecret`. - -Create a client secret in the app's Entra ID registration in the Entra or Azure portal (**Manage** > **Certificates & secrets** > **New client secret**). Use the **Value** of the new secret in the following guidance. - -Execute the following command in a command shell from the server project's directory, such as the Developer PowerShell command shell in Visual Studio. The `{SECRET}` placeholder is the client secret obtained from the app's registration: - -```dotnetcli -dotnet user-secrets set "AzureAd:ClientSecret" "{SECRET}" -``` - -If using Visual Studio, you can confirm the secret is set by right-clicking the server project in **Solution Explorer** and selecting **Manage User Secrets**. - ### Configure the app In the server project's app settings file (`appsettings.json`), provide the app's `AzureAd` section configuration. Obtain the application (client) ID, tenant (publisher) domain, and directory (tenant) ID from the app's registration in the Entra or Azure portal: @@ -110,6 +96,124 @@ Example: The callback path (`CallbackPath`) must match the redirect URI (login callback path) configured when registering the application in the Entra or Azure portal. Paths are configured in the **Authentication** blade of the app's registration. The default value of `CallbackPath` is `/signin-oidc` for a registered redirect URI of `https://localhost/signin-oidc` (a port isn't required). [!INCLUDE[](~/blazor/security/includes/secure-authentication-flows.md)] + +### Establish the client secret + +Create a client secret in the app's Entra ID registration in the Entra or Azure portal (**Manage** > **Certificates & secrets** > **New client secret**). Use the **Value** of the new secret in the following guidance. + +Use either or both of the following approaches to supply the client secret to the app: + +* [Secret Manager tool](#secret-manager-tool): The Secret Manager tool stores private data on the local machine and is only used during local development. +* [Azure Key Vault](#azure-key-vault): You can store the client secret in a key vault for use in any environment, including for the Development environment when working locally. Some developers prefer to use key vaults for staging and production deployments and use the [Secret Manager tool](#secret-manager-tool) for local development. + +We strongly recommend that you avoid storing client secrets in project code or configuration files. Use secure authentication flows, such as either or both of the approaches in this section. + +### Secret Manager tool + +The [Secret Manager tool](xref:security/app-secrets) can store the server app's client secret under the configuration key `AzureAd:ClientSecret`. + +The [sample app](#sample-app) hasn't been initialized for the Secret Manager tool. Use a command shell, such as the Developer PowerShell command shell in Visual Studio, to execute the following command. Before executing the command, change the directory with the `cd` command to the server project's directory. The command establishes a user secrets identifier (``) in the server app's project file, which is used internally by the tooling to track secrets for the app: + +```dotnetcli +dotnet user-secrets init +``` + +Execute the following command to set the client secret. The `{SECRET}` placeholder is the client secret obtained from the app's Entra registration: + +```dotnetcli +dotnet user-secrets set "AzureAd:ClientSecret" "{SECRET}" +``` + +If using Visual Studio, you can confirm that the secret is set by right-clicking the server project in **Solution Explorer** and selecting **Manage User Secrets**. + +### Azure Key Vault + +[Azure Key Vault](https://azure.microsoft.com/products/key-vault/) provides a safe approach for providing the app's client secret to the app. + +To create a key vault and set a client secret, see [About Azure Key Vault secrets (Azure documentation)](/azure/key-vault/secrets/about-secrets), which cross-links resources to get started with Azure Key Vault. To implement the code in this section, record the key vault URI and the secret name from Azure when you create the key vault and secret. When you set the access policy for the secret in the **Access policies** panel: + +* Only the **Get** secret permission is required. +* Select the application as the **Principal** for the secret. + +> [!IMPORTANT] +> A key vault secret is created with an expiration date. Be sure to track when a key vault secret is going to expire and create a new secret for the app prior to that date passing. + +The following `GetKeyVaultSecret` method retrieves a secret from a key vault. Add this method to the server project. Adjust the namespace (`BlazorSample.Helpers`) to match your project namespace scheme. + +`Helpers/AzureHelper.cs`: + +```csharp +using Azure; +using Azure.Identity; +using Azure.Security.KeyVault.Secrets; + +namespace BlazorSample.Helpers; + +public static class AzureHelper +{ + public static string GetKeyVaultSecret(string tenantId, string vaultUri, string secretName) + { + DefaultAzureCredentialOptions options = new() + { + // Specify the tenant ID to use the dev credentials when running the app locally + // in Visual Studio. + VisualStudioTenantId = tenantId, + SharedTokenCacheTenantId = tenantId + }; + + var client = new SecretClient(new Uri(vaultUri), new DefaultAzureCredential(options)); + var secret = client.GetSecretAsync(secretName).Result; + + return secret.Value.Value; + } +} +``` + +Where services are registered in the server project's `Program` file, obtain and apply the client secret using the following code: + +```csharp +var tenantId = builder.Configuration.GetValue("AzureAd:TenantId")!; +var vaultUri = builder.Configuration.GetValue("AzureAd:VaultUri")!; +var secretName = builder.Configuration.GetValue("AzureAd:SecretName")!; + +builder.Services.Configure( + OpenIdConnectDefaults.AuthenticationScheme, + options => + { + options.ClientSecret = + AzureHelper.GetKeyVaultSecret(tenantId, vaultUri, secretName); + }); +``` + +If you wish to control the environment where the preceding code operates, for example to avoid running the code locally because you've opted to use the [Secret Manager tool](#secret-manager-tool) for local development, you can wrap the preceding code in a conditional statement that checks the environment: + +```csharp +if (!context.HostingEnvironment.IsDevelopment()) +{ + ... +} +``` + +In the `AzureAd` section of `appsettings.json`, add the following `VaultUri` and `SecretName` configuration keys and values: + +```json +"VaultUri": "{VAULT URI}", +"SecretName": "{SECRET NAME}" +``` + +In the preceding example: + +* The `{VAULT URI}` placeholder is the key vault URI. Include the trailing slash on the URI. +* The `{SECRET NAME}` placeholder is the secret name. + +Example: + +```json +"VaultUri": "https://contoso.vault.azure.net/", +"SecretName": "BlazorWebAppEntra" +``` + +Configuration is used to facilitate supplying dedicated key vaults and secret names based on the app's environmental configuration files. For example, you can supply different configuration values for `appsettings.Development.json` in development, `appsettings.Staging.json` when staging, and `appsettings.Production.json` for the production deployment. For more information, see . ## Redirect to the home page on sign out