Hi, I use a hook to load external credentials as per
https://docs.kedro.org/en/stable/extend/hooks/common_use_cases/#use-hooks-to-load-external-credentials
In the hook I would like to use some parameters, like an external url and some other parameters to get external credentials.
What is the best practice to store and get such kind of parameters? Are environment variables the only way to achieve this?
def after_context_created(self, context):
creds = get_credentials*(***url***, ***account***)*
context.config_loader["credentials"] = {
**context.config_loader["credentials"],
**creds
}