-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws/credentials/plugincreds: Add support for Go plugin for credentials #1320
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, one change in the example
// go build -tags example -o usePlugin usePlugin.go | ||
// | ||
// Usage: | ||
// ./usePlugin <compiled plugin file> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
arg is never used in the example
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks fixed these tests.
…vider Adds support for using plugins to retrieve credentials for API requests. This change adds a new package plugincreds under aws/credentials. As of Go 1.8 this functionality is only available for Linux. See the example/aws/credentials/plugincreds folder in the SDK for example usage.
2dd708a
to
b39a102
Compare
Adds support for using plugins to retrieve credentials for API requests.
This change adds a new package
plugincreds
underaws/credentials
.As of Go 1.8 this functionality is only available for Linux.
See the example/aws/credentials/plugincreds folder in the SDK for
example usage.