The C# .NET SDK currently only supports legacy versions of Nitric prior to v1. This version is maintained for compatibility with existing projects and not recommended for new projects. New projects should be started using a supported SDK (presented automatically using the `nitric new` command) orget in touch to request an update to the latest version.
.NET - Secret.Latest()
Returns a reference to the latest
version of a secret, regardless of that version's ID.
using Nitric.Sdk;
using Nitric.Sdk.Resource;
var keyRef = Nitric.Secret("apiKey").With(SecretPermission.Accessing);
var latestVersion = keyRef.Latest();
Nitric.Run();
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
using Nitric.Sdk;
using Nitric.Sdk.Resource;
var keyRef = Nitric.Secret("apiKey").With(SecretPermission.Accessing);
var latestVersion = keyRef.Latest();
Nitric.Run();
Access the latest value of a secret
using Nitric.Sdk;
using Nitric.Sdk.Resource;
var keyRef = Nitric.Secret("apiKey").With(SecretPermission.Accessing);
var latestVersion = keyRef.Latest().Access();
Nitric.Run();
See secret.Version().Access() for more details.