-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is needed to support loading roles on kubernetes pod using web identity federation, if STS is not there, the aws-sdk credentials chain will ignore this method and fallback to the instance metadata role which would not be the expected role for the application code
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
{ | ||
"dependencies": [ | ||
"zlib", | ||
"aws-sdk-cpp", | ||
{ | ||
"name": "aws-sdk-cpp", | ||
"features": [ "sts" ] | ||
}, | ||
"openssl" | ||
], | ||
"builtin-baseline": "a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6", | ||
"overrides": [{"name": "openssl", "version": "3.0.8"}] | ||
} | ||
} |