You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the only place that the OAuth bearer token is output when generated by edgexproxy is in the log using an LoggingClient.Info call. This has 2 problems:
Info log level should not output sensitive data like the OAuth token (I think outputting it with Debug level is okay though)
There should also be a different way to access the token, i.e. using vault or a file on the filesystem so that after generating the token, there is an easy way to access the token for automatic usage by scripts and such.
Currently the only place that the OAuth bearer token is output when generated by edgexproxy is in the log using an
LoggingClient.Infocall. This has 2 problems: