From 711b12fa249cba9effecd4e722dd8d460d083659 Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 17 Sep 2024 14:29:49 -0400 Subject: feat: some mvc static routing extensions --- .../src/Secrets/VaultSecrets.cs | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'lib/VNLib.Plugins.Extensions.Loading/src/Secrets') diff --git a/lib/VNLib.Plugins.Extensions.Loading/src/Secrets/VaultSecrets.cs b/lib/VNLib.Plugins.Extensions.Loading/src/Secrets/VaultSecrets.cs index 9be74ee..8bf9d68 100644 --- a/lib/VNLib.Plugins.Extensions.Loading/src/Secrets/VaultSecrets.cs +++ b/lib/VNLib.Plugins.Extensions.Loading/src/Secrets/VaultSecrets.cs @@ -107,21 +107,6 @@ namespace VNLib.Plugins.Extensions.Loading return res ?? throw new KeyNotFoundException($"Missing required secret {secretName}"); } - /// - /// Gets a secret at the given vault url (in the form of "vault://[mount-name]/[secret-path]?secret=[secret_name]") - /// - /// - /// The raw vault url to lookup - /// The string of the object at the specified vault path - /// - /// - /// - [Obsolete("Deprecated in favor of Secrets")] - public static Task GetSecretFromVaultAsync(this PluginBase plugin, ReadOnlySpan vaultPath) - { - throw new NotSupportedException("This method is not supported in this context"); - } - /// /// Gets the Secret value as a byte buffer /// -- cgit