-
Notifications
You must be signed in to change notification settings - Fork 24
feat(awsutil-v2): implement awsutil for aws-sdk-go-v2 #83
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # AWSUTIL - Go library for generating aws credentials | ||
|
|
||
| *NOTE*: This is version 2 of the library. The `v0` branch contains version 0, | ||
| which may be needed for legacy applications or while transitioning to version 2. | ||
|
|
||
| ## Usage | ||
|
|
||
| Following is an example usage of generating AWS credentials with static user credentials | ||
|
|
||
| ```go | ||
|
|
||
| // AWS access keys for an IAM user can be used as your AWS credentials. | ||
| // This is an example of an access key and secret key | ||
| var accessKey = "AKIAIOSFODNN7EXAMPLE" | ||
| var secretKey = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" | ||
|
|
||
| // Access key IDs beginning with AKIA are long-term access keys. A long-term | ||
| // access key should be supplied when generating static credentials. | ||
| config, err := awsutil.NewCredentialsConfig( | ||
| awsutil.WithAccessKey(accessKey), | ||
| awsutil.WithSecretKey(secretKey), | ||
| ) | ||
| if err != nil { | ||
| return err | ||
| } | ||
|
|
||
| s3Client := s3.NewFromConfig(config) | ||
|
|
||
| ``` | ||
|
|
||
| ## Contributing to v0 | ||
|
|
||
| To push a bug fix or feature for awsutil `v0`, branch out from the [awsutil/v0](https://github.com/hashicorp/go-secure-stdlib/tree/awsutil/v0) branch. | ||
| Commit the code changes you want to this new branch and open a PR. Make sure the PR | ||
| is configured so that the base branch is set to `awsutil/v0` and not `main`. Once the PR | ||
| is reviewed, feel free to merge it into the `awsutil/v0` branch. When creating a new | ||
| release, validate that the `Target` branch is `awsutil/v0` and the tag is `awsutil/v0.x.x`. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.