@intility/msal-keyvault-cache
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published


@intility/msal-keyvault-cache

A cache for @azure/msal-node that uses Azure KeyVault as a store.

pipeline package version

Usage

Install with

npm install @intility/msal-keyvault-cache

Then, initialize the cache and use it in your client configuration

import { PublicClientApplication } from "@azure/msal-node";
import keyVaultCache from "@intility/msal-keyvault-cache";

let cachePlugin = keyVaultCache("https://YOUR_KEYVAULT_HERE.vault.azure.net/");

let publicClientConfig = {
  auth: {
    clientId: "CLIENT_ID",
    authority: "https://login.microsoftonline.com/TENANT_ID",
  },
  cache: {
    cachePlugin,
  },
};

let publicClientApplication = new PublicClientApplication(publicClientConfig);

By default, it will authenticate to the KeyVault by using DefaultAzureCredential from '@azure/identity'. This means you can authenticate a number of ways. In CI you can use environment variables, and locally you can use the Azure CLI.

Syntax

let cachePlugin = keyVaultCache(keyVaultUrl);
let cachePlugin = keyVaultCache(keyVaultUrl, secretName);
let cachePlugin = keyVaultCache(keyVaultUrl, secretName, credential);

Parameters

keyVaultUrl

A JavaScript string containing the url to your Azure KeyVault.

secretName (optional)

  • Default Value: "msal-cache"

A JavaScript string containing the name of the secret.

credential (optional)

  • Default Value: new DefaultAzureCredential()

A Credential Class used to authenticate to the Azure KeyVault.

Return value

A cachePlugin that can be used in a @azure/msal-node Client Configuration.

Package Sidebar

Install

npm i @intility/msal-keyvault-cache

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

7.36 kB

Total Files

6

Last publish

Collaborators

  • linda.tran
  • xec
  • h3rmanj