Aws Secret Manager connection best practices #2499
-
Hey all, We need to work with Web Identity connection for our non-local machines (such as stage and production environments) but that cannot be achieved in dev. What do you think about this solution, is there anything else we should try? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@LahavHarary Just to give you high level overview of
In each of the cases, the next generator is tried only if the previous generator returns exception in the construction process (in which case the object is never created), with Looking at high level on your requirement, this approach should work. However, how do you determine the preference order in a list of (connection) generators, when it includes generator that's only applicable for DEV environment? Or should you better control generator registration logic as part of some configuration for each environment (similar to we have development and production settings for .NET configuration)? This is something you might want to evaluate per your requirements and future scalability. Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
@LahavHarary Just to give you high level overview of
FallbackCredentialsFactory
: