Node.js - secret.latest()

Returns a reference to the latest version of a secret, regardless of that version's ID.

import { secret } from '@nitric/sdk'

const keyRef = secret('apiKey').for('access')

const latestVersion = keyRef.latest()

Notes

latest() is most useful when you always want the most recent secret values from the secrets manager. Database credentials and API keys are good examples of secrets where the latest value is usually what you want.

For symmetric encryption, you'll need to retrieve the version of the secret used to encrypt a value when you try to decrypt it again. In those cases latest() isn't a good choice, use version() instead.

Examples

Get a reference to the latest secret version

import { secret } from '@nitric/sdk'

const keyRef = secret('apiKey').for('access')

const latestVersion = keyRef.latest()

Access the latest value of a secret

import { secret } from '@nitric/sdk'

const keyRef = secret('apiKey').for('access')

const key = await keyRef.latest().access()