.Net Framework web application - Using AWS Secrets in a Configuration Builder

0

We have an on prem application & we want to use AWS Secrets for storing things like DB connection strings.

I've found an example using Azure (https://github.com/aspnet/MicrosoftConfigurationBuilders/blob/main/docs/KeyValueConfigBuilders.md) I've adapted this to try to use AWS in a KeyValueConfigBuilder derived class. This is the LazyInitialize override which fetches the Profile Location and Profile Name from appsettings (we'll inject the values for these settings via Azure Devops)

      protected override void LazyInitialize(string name, NameValueCollection config)
        {
            base.LazyInitialize(name, config);

            ProfilesLocation = UpdateConfigSettingWithAppSettings(ProfilesLocationTag);
            Region = UpdateConfigSettingWithAppSettings(RegionTag);
            ProfileName = UpdateConfigSettingWithAppSettings(ProfileNameTag);
            SecretGroups = UpdateConfigSettingWithAppSettings(SecretGroupsTag).Split(',').ToList();
            Environment = UpdateConfigSettingWithAppSettings(EnvironmentTag);

            var chain = string.IsNullOrEmpty(ProfilesLocation) ? new CredentialProfileStoreChain() :
                new CredentialProfileStoreChain(ProfilesLocation);

            chain.TryGetAWSCredentials(ProfileName, out var credentials);

            IAmazonSecretsManager client = new AmazonSecretsManagerClient(credentials);
        }

Unfortunately, the TryGetAWSCredentials line throws an exception:

InvalidOperationException: The ConfigurationBuilder 'AwsSecrets[SecretsWebApplication.Configuration.MyCustomConfigBuilder]' has recursively re-entered processing of the 'appSettings' section.

Drilling into TryGetAWSCredentials, it seems that the AWSConfigs static constructor is doing lots of configuration reading:

internal static string _awsRegion = AWSConfigs.GetConfig(nameof (AWSRegion));

Is there a way of instantiating AmazonSecretsManagerClient without it attempting to read appsettings?

1 回答
0

Hi AndrewR,

Are you sure that the AWS config you're injecting got in the right place correctly? Is there any way that you can confirm this first in order to rule out any other issues?

Cheers, Andrei

AWS
已回答 6 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则