mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			272 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			272 B
		
	
	
	
		
			Go
		
	
	
	
	
	
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
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |