AWSSecretsManagerConfigurationExtensions icon indicating copy to clipboard operation
AWSSecretsManagerConfigurationExtensions copied to clipboard

This repository contains a provider for Microsoft.Extensions.Configuration that retrieves secrets stored in AWS Secrets Manager.

Results 24 AWSSecretsManagerConfigurationExtensions issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to decouple accepted ARNs list from the program.cs to a config file, I have my config options defined below in appsettings.json, ``` "SecretsManagerConfigurationProviderOptions": { "acceptedSecretArns": [ "my-arn"...

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 10.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

If I contributed with a PR to replace newtownsoft json with System.Text.Json, would you accept it?

I am sorry if this has been covered already. I cannot find anything like it in discussion. AWS database secrets are dictionaries. Say I have specified a DB secret for...

How can use AWS secret when I deploy into production. I'm using .net6 and used docker to deploy into azure but in production, I got the error "Unable to get...

This passing test in SecretsManagerConfigurationProviderTests appears to be attempting a test on filtering: [Test, CustomAutoData] public void Secrets_can_be_filtered_out_via_options_on_fetching([...]) { options.ListSecretsFilters = new List { new Filter { Key = FilterNameStringType.Name,...

From the looks of it, this library has custom in-memory caching of the secrets it reads from AWS Secrets Manager. At the same time, there exists a supported library from...

The changes in this PR are to address issues #58 and #57 - Adding support to take pieces of configuration from an appsettings file, rather than all configuration having to...

This is a nice little library, but one issue that I'm having is that it doesnt take AWS options from appsettings. What are your thoughts on supporting this? For example,...

A very common issue being reported when trying to install this package in a project using packages of the AWS SDK newer than 3.3. This issue is caused because the...

question