https://github.com/manishtiwari25/aws-secretmanager-configuration-extension
This repository contains a provider for Microsoft.Extensions.Configuration that retrieves secrets stored in AWS Secrets Manager.
https://github.com/manishtiwari25/aws-secretmanager-configuration-extension
aspnet-core aspnet-core-configuration aws aws-secrets-manager dotnet-core dotnet-standard
Last synced: about 2 months ago
JSON representation
This repository contains a provider for Microsoft.Extensions.Configuration that retrieves secrets stored in AWS Secrets Manager.
- Host: GitHub
- URL: https://github.com/manishtiwari25/aws-secretmanager-configuration-extension
- Owner: manishtiwari25
- Created: 2021-03-01T03:05:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-15T12:59:27.000Z (8 months ago)
- Last Synced: 2025-03-23T07:13:17.413Z (3 months ago)
- Topics: aspnet-core, aspnet-core-configuration, aws, aws-secrets-manager, dotnet-core, dotnet-standard
- Language: C#
- Homepage:
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains a provider for [Microsoft.Extensions.Configuration](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/) that retrieves secrets stored in [AWS Secrets Manager](https://aws.amazon.com/secrets-manager/) using Secret Manger [Caching](https://docs.aws.amazon.com/secretsmanager/latest/userguide/use-client-side-caching.html).
## Cloning
```sh
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).
https://github.com/aws/aws-sdk-net/issues/1846