VOOZH about

URL: https://www.nuget.org/packages/Kralizek.Extensions.Configuration.AWSSecretsManager/

⇱ NuGet Gallery | Kralizek.Extensions.Configuration.AWSSecretsManager 2.0.0




Kralizek.Extensions.Configuration.AWSSecretsManager 2.0.0

dotnet add package Kralizek.Extensions.Configuration.AWSSecretsManager --version 2.0.0
 
 
NuGet\Install-Package Kralizek.Extensions.Configuration.AWSSecretsManager -Version 2.0.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kralizek.Extensions.Configuration.AWSSecretsManager" Version="2.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kralizek.Extensions.Configuration.AWSSecretsManager" Version="2.0.0" />
 
Directory.Packages.props
<PackageReference Include="Kralizek.Extensions.Configuration.AWSSecretsManager" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kralizek.Extensions.Configuration.AWSSecretsManager --version 2.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Kralizek.Extensions.Configuration.AWSSecretsManager, 2.0.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kralizek.Extensions.Configuration.AWSSecretsManager@2.0.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kralizek.Extensions.Configuration.AWSSecretsManager&version=2.0.0
 
Install as a Cake Addin
#tool nuget:?package=Kralizek.Extensions.Configuration.AWSSecretsManager&version=2.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Kralizek.Extensions.Configuration.AWSSecretsManager

AWS Secrets Manager configuration provider for Microsoft.Extensions.Configuration.

Install

dotnet add package Kralizek.Extensions.Configuration.AWSSecretsManager

Quick start

Choose the mode that matches your access pattern:

using Microsoft.Extensions.Configuration;

// Discovery: calls ListSecrets + BatchGetSecretValue
// IAM: secretsmanager:ListSecrets, secretsmanager:BatchGetSecretValue
var configuration = new ConfigurationBuilder()
 .AddSecretsManagerDiscovery()
 .Build();

// KnownSecrets: calls BatchGetSecretValue for a fixed list — no ListSecrets
// IAM: secretsmanager:BatchGetSecretValue
var configuration = new ConfigurationBuilder()
 .AddSecretsManagerKnownSecrets(new[] { "my-app/db", "my-app/api-key" })
 .Build();

// KnownSecret: calls GetSecretValue for exactly one secret — no ListSecrets, no Batch
// IAM: secretsmanager:GetSecretValue
var configuration = new ConfigurationBuilder()
 .AddSecretsManagerKnownSecret("my-app/prod")
 .Build();

Multiple registrations

Multiple calls — even across different modes — are supported and compose naturally:

builder
 .AddSecretsManagerDiscovery(options => { options.SecretFilter = e => e.Name.StartsWith("shared/"); })
 .AddSecretsManagerKnownSecret("myapp/high-privilege-secret");

Later registrations take precedence over earlier ones when the same key appears in more than one provider (standard Microsoft.Extensions.Configuration behaviour).

Configure with options

var configuration = new ConfigurationBuilder()
 .AddSecretsManagerDiscovery(options =>
 {
 options.SecretFilter = entry => entry.Name.StartsWith("myapp/");
 options.KeyGenerator = context => context.DefaultKey.Replace("/", ":");
 })
 .Build();

Full documentation: GitHub repository

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Kralizek.Extensions.Configuration.AWSSecretsManager:

Package Downloads
APF.Core.Clean.Api

Package Description

APF.Core.Clean.Aws

Package Description

Substratum

Opinionated, production-grade application framework built on ASP.NET Core Minimal APIs. Authentication, authorization, database, caching, logging, OpenAPI docs, cloud storage, and real-time events — all pre-wired and configured via appsettings.json.

Sagi.Sdk.AWS.DynamoDb

Package Description

Musement.AWSExtensions

A set of Localstack-aware extensions for injecting AWS services

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Kralizek.Extensions.Configuration.AWSSecretsManager:

Repository Stars
Elfocrash/aws-videos
Version Downloads Last Updated
2.0.0 7,246 5/25/2026
2.0.0-rc.1 141 5/20/2026
2.0.0-beta.5 1,462 5/8/2026
2.0.0-beta.4 75 5/6/2026
2.0.0-beta.3 200 4/29/2026
2.0.0-beta.2 65 4/28/2026
1.7.0 6,987,664 11/8/2022
1.6.3 1,749,790 9/8/2021
1.6.2 290,670 5/19/2021
1.6.1 64,286 4/29/2021
1.6.0 8,517 4/27/2021
1.5.0 194,232 1/22/2021
1.4.1 352,264 7/21/2020
1.4.0 10,378 7/16/2020
1.3.0 10,556 7/14/2020
1.2.1 182,431 2/8/2020
1.2.0 231,527 9/16/2019
1.1.0 137,790 4/19/2019
1.0.0 123,132 8/11/2018
1.0.0-alpha-2 2,639 6/21/2018
Loading failed