Dart - secret.latest()
Returns a reference to the latest
version of a secret, regardless of that version's ID.
import 'package:nitric_sdk/nitric.dart';final keyRef = Nitric.secret("apiKey").allow([SecretPermission.access,]);final 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 'package:nitric_sdk/nitric.dart';final keyRef = Nitric.secret("apiKey").allow([SecretPermission.access,]);final latestVersion = keyRef.latest();
Access the latest value of a secret
import 'package:nitric_sdk/nitric.dart';final keyRef = Nitric.secret("apiKey").allow([SecretPermission.access,]);final key = await keyRef.latest().access();
See secret.version().access() for more details.
Last updated on Oct 16, 2024