-
|
I had high hopes for I would expect, that this library builds on top of existing conventions (i.e. Let's say you have existing app using MassTransit, among other things. MassTransit creates To be more confusing, you have two different credential resolution systems - one used by AWS SDK (maybe you have even reconfigured that to use only what you need, and disable super confusing EC2 instance metadata credentials), and one from Overall I would suggest to change the way this library works, and integrate into existing conventions (at least add its own resolver into |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @POnakS, sorry I'm confused what you mean by it having its own credential resolution system? This library still uses The idea of the library is to create instance of the service clients for the service interfaces using what ever configuration was given via Apologize if I'm missing understanding question. |
Beta Was this translation helpful? Give feedback.
Hi @POnakS, sorry
AWSSDK.Extensions.NETCore.Setupis not meeting your expectations.I'm confused what you mean by it having its own credential resolution system? This library still uses
FallbackCredentialsFactoryor it's replacement in V4DefaultIdentityResolverConfigurationto resolve credentials. It just happens to have a layer on top to look for credential configuration in theIConfigurationbecause the core part of the SDK would not have access to the instance ofIConfiguration. If you are not configuring credentials viaIConfigurationlike have settings in theappsettings.jsonfile then it uses the exact same mechanism for resolving credentials.The idea of the library is to create i…