Skip to content

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

Notifications You must be signed in to change notification settings

manishtiwari25/aws-secretmanager-configuration-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Cloning

git clone https://github.com/manishtiwari25/aws-secretmanager-configuration-extension.git

Known issues

#### AWSSDK.Core SDK conflict issue

this compile error you may face if you are using some other aws nugets, simple workaround is just install ASWSDK.Core nuget package in project.

This issue is caused because the AWS SDK has strict version boundaries forcing the usage of packages within the same major version family (e.g. you can't mix the AWS S3 3.5 package with AWS EC2 3.3 package).

aws/aws-sdk-net#1846