vendor: add aws-sdk-go and dependencies

This commit is contained in:
Will Norris 2017-09-12 04:41:59 +00:00
parent 0ee5167444
commit c751f5b2c9
126 changed files with 44895 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package sts
import "github.com/aws/aws-sdk-go/aws/request"
func init() {
initRequest = func(r *request.Request) {
switch r.Operation.Name {
case opAssumeRoleWithSAML, opAssumeRoleWithWebIdentity:
r.Handlers.Sign.Clear() // these operations are unsigned
}
}
}