mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-27 02:34:52 -06:00
e240759c98
This change enables to add custom body parameters and headers to OAuth2 Client Credentials token request for non-standard authorization servers. Signed-off-by: skosunda <skosunda@adobe.com> Co-authored-by: skosunda <skosunda@adobe.com>
590 lines
17 KiB
Go
590 lines
17 KiB
Go
// Copyright 2019 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package rest
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"crypto/rsa"
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"encoding/base64"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"encoding/pem"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/open-policy-agent/opa/internal/jwx/jwa"
|
|
"github.com/open-policy-agent/opa/internal/jwx/jws"
|
|
"github.com/open-policy-agent/opa/internal/jwx/jws/sign"
|
|
"github.com/open-policy-agent/opa/internal/uuid"
|
|
"github.com/open-policy-agent/opa/keys"
|
|
"github.com/open-policy-agent/opa/logging"
|
|
)
|
|
|
|
const (
|
|
// Default to s3 when the service for sigv4 signing is not specified for backwards compatibility
|
|
awsSigv4SigningDefaultService = "s3"
|
|
)
|
|
|
|
// DefaultTLSConfig defines standard TLS configurations based on the Config
|
|
func DefaultTLSConfig(c Config) (*tls.Config, error) {
|
|
t := &tls.Config{}
|
|
url, err := url.Parse(c.URL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if url.Scheme == "https" {
|
|
t.InsecureSkipVerify = c.AllowInsecureTLS
|
|
}
|
|
|
|
if c.TLS != nil && c.TLS.CACert != "" {
|
|
caCert, err := ioutil.ReadFile(c.TLS.CACert)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var rootCAs *x509.CertPool
|
|
if c.TLS.SystemCARequired {
|
|
rootCAs, err = x509.SystemCertPool()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
rootCAs = x509.NewCertPool()
|
|
}
|
|
|
|
ok := rootCAs.AppendCertsFromPEM(caCert)
|
|
if !ok {
|
|
return nil, errors.New("unable to parse and append CA certificate to certificate pool")
|
|
}
|
|
t.RootCAs = rootCAs
|
|
}
|
|
|
|
return t, nil
|
|
}
|
|
|
|
// DefaultRoundTripperClient is a reasonable set of defaults for HTTP auth plugins
|
|
func DefaultRoundTripperClient(t *tls.Config, timeout int64) *http.Client {
|
|
// Ensure we use a http.Transport with proper settings: the zero values are not
|
|
// a good choice, as they cause leaking connections:
|
|
// https://github.com/golang/go/issues/19620
|
|
|
|
// copy, we don't want to alter the default client's Transport
|
|
tr := http.DefaultTransport.(*http.Transport).Clone()
|
|
tr.ResponseHeaderTimeout = time.Duration(timeout) * time.Second
|
|
tr.TLSClientConfig = t
|
|
|
|
c := *http.DefaultClient
|
|
c.Transport = tr
|
|
return &c
|
|
}
|
|
|
|
// defaultAuthPlugin represents baseline 'no auth' behavior if no alternative plugin is specified for a service
|
|
type defaultAuthPlugin struct{}
|
|
|
|
func (*defaultAuthPlugin) NewClient(c Config) (*http.Client, error) {
|
|
t, err := DefaultTLSConfig(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return DefaultRoundTripperClient(t, *c.ResponseHeaderTimeoutSeconds), nil
|
|
}
|
|
|
|
func (*defaultAuthPlugin) Prepare(*http.Request) error {
|
|
return nil
|
|
}
|
|
|
|
type serverTLSConfig struct {
|
|
CACert string `json:"ca_cert,omitempty"`
|
|
SystemCARequired bool `json:"system_ca_required,omitempty"`
|
|
}
|
|
|
|
// bearerAuthPlugin represents authentication via a bearer token in the HTTP Authorization header
|
|
type bearerAuthPlugin struct {
|
|
Token string `json:"token"`
|
|
TokenPath string `json:"token_path"`
|
|
Scheme string `json:"scheme,omitempty"`
|
|
}
|
|
|
|
func (ap *bearerAuthPlugin) NewClient(c Config) (*http.Client, error) {
|
|
t, err := DefaultTLSConfig(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if ap.Token != "" && ap.TokenPath != "" {
|
|
return nil, errors.New("invalid config: specify a value for either the \"token\" or \"token_path\" field")
|
|
}
|
|
|
|
if ap.Scheme == "" {
|
|
ap.Scheme = "Bearer"
|
|
}
|
|
|
|
return DefaultRoundTripperClient(t, *c.ResponseHeaderTimeoutSeconds), nil
|
|
}
|
|
|
|
func (ap *bearerAuthPlugin) Prepare(req *http.Request) error {
|
|
token := ap.Token
|
|
|
|
if ap.TokenPath != "" {
|
|
bytes, err := ioutil.ReadFile(ap.TokenPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
token = strings.TrimSpace(string(bytes))
|
|
}
|
|
|
|
req.Header.Add("Authorization", fmt.Sprintf("%v %v", ap.Scheme, token))
|
|
return nil
|
|
}
|
|
|
|
type tokenEndpointResponse struct {
|
|
AccessToken string `json:"access_token"`
|
|
TokenType string `json:"token_type"`
|
|
ExpiresIn int64 `json:"expires_in"`
|
|
}
|
|
|
|
// oauth2ClientCredentialsAuthPlugin represents authentication via a bearer token in the HTTP Authorization header
|
|
// obtained through the OAuth2 client credentials flow
|
|
type oauth2ClientCredentialsAuthPlugin struct {
|
|
GrantType string `json:"grant_type"`
|
|
TokenURL string `json:"token_url"`
|
|
ClientID string `json:"client_id"`
|
|
ClientSecret string `json:"client_secret"`
|
|
SigningKeyID string `json:"signing_key"`
|
|
Thumbprint string `json:"thumbprint"`
|
|
Claims map[string]interface{} `json:"additional_claims"`
|
|
IncludeJti bool `json:"include_jti_claim"`
|
|
Scopes []string `json:"scopes,omitempty"`
|
|
AdditionalHeaders map[string]string `json:"additional_headers,omitempty"`
|
|
AdditionalParameters map[string]string `json:"additional_parameters,omitempty"`
|
|
|
|
signingKey *keys.Config
|
|
signingKeyParsed interface{}
|
|
tokenCache *oauth2Token
|
|
tlsSkipVerify bool
|
|
logger logging.Logger
|
|
}
|
|
|
|
type oauth2Token struct {
|
|
Token string
|
|
ExpiresAt time.Time
|
|
}
|
|
|
|
func (ap *oauth2ClientCredentialsAuthPlugin) createAuthJWT(claims map[string]interface{}, signingKey interface{}) (*string, error) {
|
|
now := time.Now()
|
|
baseClaims := map[string]interface{}{
|
|
"iat": now.Unix(),
|
|
"exp": now.Add(10 * time.Minute).Unix(),
|
|
}
|
|
if claims == nil {
|
|
claims = make(map[string]interface{})
|
|
}
|
|
for k, v := range baseClaims {
|
|
claims[k] = v
|
|
}
|
|
|
|
if len(ap.Scopes) > 0 {
|
|
claims["scope"] = strings.Join(ap.Scopes, " ")
|
|
}
|
|
|
|
if ap.IncludeJti {
|
|
jti, err := uuid.New(rand.Reader)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
claims["jti"] = jti
|
|
}
|
|
|
|
payload, err := json.Marshal(claims)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var jwsHeaders []byte
|
|
if ap.Thumbprint != "" {
|
|
bytes, err := hex.DecodeString(ap.Thumbprint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x5t := base64.URLEncoding.EncodeToString(bytes)
|
|
jwsHeaders = []byte(fmt.Sprintf(`{"typ":"JWT","alg":"%s","x5t":"%s"}`, ap.signingKey.Algorithm, x5t))
|
|
} else {
|
|
jwsHeaders = []byte(fmt.Sprintf(`{"typ":"JWT","alg":"%s"}`, ap.signingKey.Algorithm))
|
|
}
|
|
|
|
jwsCompact, err := jws.SignLiteral(payload,
|
|
jwa.SignatureAlgorithm(ap.signingKey.Algorithm),
|
|
signingKey,
|
|
jwsHeaders,
|
|
rand.Reader)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
jwt := string(jwsCompact)
|
|
|
|
return &jwt, nil
|
|
}
|
|
|
|
func (ap *oauth2ClientCredentialsAuthPlugin) parseSigningKey(c Config) (err error) {
|
|
if ap.SigningKeyID == "" {
|
|
return errors.New("signing_key required for jwt_bearer grant type")
|
|
}
|
|
|
|
if val, ok := c.keys[ap.SigningKeyID]; ok {
|
|
if val.PrivateKey == "" {
|
|
return errors.New("referenced signing_key does not include a private key")
|
|
}
|
|
ap.signingKey = val
|
|
} else {
|
|
return errors.New("signing_key refers to non-existent key")
|
|
}
|
|
|
|
alg := jwa.SignatureAlgorithm(ap.signingKey.Algorithm)
|
|
ap.signingKeyParsed, err = sign.GetSigningKey(ap.signingKey.PrivateKey, alg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ap *oauth2ClientCredentialsAuthPlugin) NewClient(c Config) (*http.Client, error) {
|
|
t, err := DefaultTLSConfig(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if ap.GrantType == "" {
|
|
// Use client_credentials as default to not break existing config
|
|
ap.GrantType = grantTypeClientCredentials
|
|
} else if ap.GrantType != grantTypeClientCredentials && ap.GrantType != grantTypeJwtBearer {
|
|
return nil, errors.New("grant_type must be either client_credentials or jwt_bearer")
|
|
}
|
|
|
|
if ap.GrantType == grantTypeJwtBearer || (ap.GrantType == grantTypeClientCredentials && ap.SigningKeyID != "") {
|
|
if err = ap.parseSigningKey(c); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Inherit skip verify from the "parent" settings. Should this be configurable on the credentials too?
|
|
ap.tlsSkipVerify = c.AllowInsecureTLS
|
|
|
|
ap.logger = c.logger
|
|
|
|
if !strings.HasPrefix(ap.TokenURL, "https://") {
|
|
return nil, errors.New("token_url required to use https scheme")
|
|
}
|
|
if ap.GrantType == grantTypeClientCredentials {
|
|
if ap.ClientSecret != "" && ap.SigningKeyID != "" {
|
|
return nil, errors.New("can only use one of client_secret and signing_key for client_credentials")
|
|
}
|
|
if ap.SigningKeyID == "" && (ap.ClientID == "" || ap.ClientSecret == "") {
|
|
return nil, errors.New("client_id and client_secret required")
|
|
}
|
|
}
|
|
|
|
return DefaultRoundTripperClient(t, *c.ResponseHeaderTimeoutSeconds), nil
|
|
}
|
|
|
|
// requestToken tries to obtain an access token using either the client credentials flow
|
|
// https://tools.ietf.org/html/rfc6749#section-4.4
|
|
// or the JWT authorization grant
|
|
// https://tools.ietf.org/html/rfc7523
|
|
func (ap *oauth2ClientCredentialsAuthPlugin) requestToken() (*oauth2Token, error) {
|
|
body := url.Values{}
|
|
if ap.GrantType == grantTypeJwtBearer {
|
|
authJwt, err := ap.createAuthJWT(ap.Claims, ap.signingKeyParsed)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
body.Add("grant_type", "urn:ietf:params:oauth:grant-type:jwt-bearer")
|
|
body.Add("assertion", *authJwt)
|
|
} else {
|
|
body.Add("grant_type", grantTypeClientCredentials)
|
|
|
|
if ap.SigningKeyID != "" {
|
|
authJwt, err := ap.createAuthJWT(ap.Claims, ap.signingKeyParsed)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
body.Add("client_assertion_type", "urn:ietf:params:oauth:client-assertion-type:jwt-bearer")
|
|
body.Add("client_assertion", *authJwt)
|
|
|
|
if ap.ClientID != "" {
|
|
body.Add("client_id", ap.ClientID)
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(ap.Scopes) > 0 {
|
|
body.Add("scope", strings.Join(ap.Scopes, " "))
|
|
}
|
|
|
|
for k, v := range ap.AdditionalParameters {
|
|
body.Set(k, v)
|
|
}
|
|
|
|
r, err := http.NewRequest("POST", ap.TokenURL, strings.NewReader(body.Encode()))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
r.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
if ap.GrantType == grantTypeClientCredentials && ap.ClientSecret != "" {
|
|
r.SetBasicAuth(ap.ClientID, ap.ClientSecret)
|
|
}
|
|
|
|
for k, v := range ap.AdditionalHeaders {
|
|
r.Header.Add(k, v)
|
|
}
|
|
|
|
client := DefaultRoundTripperClient(&tls.Config{InsecureSkipVerify: ap.tlsSkipVerify}, 10)
|
|
response, err := client.Do(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
bodyRaw, err := ioutil.ReadAll(response.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if response.StatusCode != 200 {
|
|
return nil, fmt.Errorf("error in response from OAuth2 token endpoint: %v", string(bodyRaw))
|
|
}
|
|
|
|
var tokenResponse tokenEndpointResponse
|
|
err = json.Unmarshal(bodyRaw, &tokenResponse)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if strings.ToLower(tokenResponse.TokenType) != "bearer" {
|
|
return nil, errors.New("unknown token type returned from token endpoint")
|
|
}
|
|
|
|
return &oauth2Token{
|
|
Token: strings.TrimSpace(tokenResponse.AccessToken),
|
|
ExpiresAt: time.Now().Add(time.Duration(tokenResponse.ExpiresIn) * time.Second),
|
|
}, nil
|
|
}
|
|
|
|
func (ap *oauth2ClientCredentialsAuthPlugin) Prepare(req *http.Request) error {
|
|
minTokenLifetime := float64(10)
|
|
if ap.tokenCache == nil || time.Until(ap.tokenCache.ExpiresAt).Seconds() < minTokenLifetime {
|
|
ap.logger.Debug("Requesting token from token_url %v", ap.TokenURL)
|
|
token, err := ap.requestToken()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ap.tokenCache = token
|
|
}
|
|
|
|
req.Header.Add("Authorization", fmt.Sprintf("Bearer %v", ap.tokenCache.Token))
|
|
return nil
|
|
}
|
|
|
|
// clientTLSAuthPlugin represents authentication via client certificate on a TLS connection
|
|
type clientTLSAuthPlugin struct {
|
|
Cert string `json:"cert"`
|
|
PrivateKey string `json:"private_key"`
|
|
PrivateKeyPassphrase string `json:"private_key_passphrase,omitempty"`
|
|
CACert string `json:"ca_cert,omitempty"` // Deprecated: Use `services[_].tls.ca_cert` instead
|
|
SystemCARequired bool `json:"system_ca_required,omitempty"` // Deprecated: Use `services[_].tls.system_ca_required` instead
|
|
}
|
|
|
|
func (ap *clientTLSAuthPlugin) NewClient(c Config) (*http.Client, error) {
|
|
tlsConfig, err := DefaultTLSConfig(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if ap.Cert == "" {
|
|
return nil, errors.New("client certificate is needed when client TLS is enabled")
|
|
}
|
|
if ap.PrivateKey == "" {
|
|
return nil, errors.New("private key is needed when client TLS is enabled")
|
|
}
|
|
|
|
var keyPEMBlock []byte
|
|
data, err := ioutil.ReadFile(ap.PrivateKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
block, _ := pem.Decode(data)
|
|
if block == nil {
|
|
return nil, errors.New("PEM data could not be found")
|
|
}
|
|
|
|
// nolint: staticcheck // We don't want to forbid users from using this encryption.
|
|
if x509.IsEncryptedPEMBlock(block) {
|
|
if ap.PrivateKeyPassphrase == "" {
|
|
return nil, errors.New("client certificate passphrase is needed, because the certificate is password encrypted")
|
|
}
|
|
// nolint: staticcheck // We don't want to forbid users from using this encryption.
|
|
block, err := x509.DecryptPEMBlock(block, []byte(ap.PrivateKeyPassphrase))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
key, err := x509.ParsePKCS8PrivateKey(block)
|
|
if err != nil {
|
|
key, err = x509.ParsePKCS1PrivateKey(block)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("private key should be a PEM or plain PKCS1 or PKCS8; parse error: %v", err)
|
|
}
|
|
}
|
|
rsa, ok := key.(*rsa.PrivateKey)
|
|
if !ok {
|
|
return nil, errors.New("private key is invalid")
|
|
}
|
|
keyPEMBlock = pem.EncodeToMemory(
|
|
&pem.Block{
|
|
Type: "RSA PRIVATE KEY",
|
|
Bytes: x509.MarshalPKCS1PrivateKey(rsa),
|
|
},
|
|
)
|
|
} else {
|
|
keyPEMBlock = data
|
|
}
|
|
|
|
certPEMBlock, err := ioutil.ReadFile(ap.Cert)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
cert, err := tls.X509KeyPair(certPEMBlock, keyPEMBlock)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tlsConfig.Certificates = []tls.Certificate{cert}
|
|
|
|
var client *http.Client
|
|
|
|
if c.TLS != nil && c.TLS.CACert != "" {
|
|
client = DefaultRoundTripperClient(tlsConfig, *c.ResponseHeaderTimeoutSeconds)
|
|
} else {
|
|
if ap.CACert != "" {
|
|
c.logger.Warn("Deprecated 'services[_].credentials.client_tls.ca_cert' configuration specified. Use 'services[_].tls.ca_cert' instead. See https://www.openpolicyagent.org/docs/latest/configuration/#services")
|
|
caCert, err := ioutil.ReadFile(ap.CACert)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var caCertPool *x509.CertPool
|
|
if ap.SystemCARequired {
|
|
caCertPool, err = x509.SystemCertPool()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
caCertPool = x509.NewCertPool()
|
|
}
|
|
|
|
ok := caCertPool.AppendCertsFromPEM(caCert)
|
|
if !ok {
|
|
return nil, errors.New("unable to parse and append CA certificate to certificate pool")
|
|
}
|
|
tlsConfig.RootCAs = caCertPool
|
|
}
|
|
|
|
client = DefaultRoundTripperClient(tlsConfig, *c.ResponseHeaderTimeoutSeconds)
|
|
}
|
|
|
|
return client, nil
|
|
}
|
|
|
|
func (ap *clientTLSAuthPlugin) Prepare(req *http.Request) error {
|
|
return nil
|
|
}
|
|
|
|
// awsSigningAuthPlugin represents authentication using AWS V4 HMAC signing in the Authorization header
|
|
type awsSigningAuthPlugin struct {
|
|
AWSEnvironmentCredentials *awsEnvironmentCredentialService `json:"environment_credentials,omitempty"`
|
|
AWSMetadataCredentials *awsMetadataCredentialService `json:"metadata_credentials,omitempty"`
|
|
AWSWebIdentityCredentials *awsWebIdentityCredentialService `json:"web_identity_credentials,omitempty"`
|
|
AWSProfileCredentials *awsProfileCredentialService `json:"profile_credentials,omitempty"`
|
|
AWSService string `json:"service,omitempty"`
|
|
|
|
logger logging.Logger
|
|
}
|
|
|
|
func (ap *awsSigningAuthPlugin) awsCredentialService() awsCredentialService {
|
|
if ap.AWSEnvironmentCredentials != nil {
|
|
ap.AWSEnvironmentCredentials.logger = ap.logger
|
|
return ap.AWSEnvironmentCredentials
|
|
}
|
|
if ap.AWSWebIdentityCredentials != nil {
|
|
ap.AWSWebIdentityCredentials.logger = ap.logger
|
|
return ap.AWSWebIdentityCredentials
|
|
}
|
|
if ap.AWSMetadataCredentials != nil {
|
|
ap.AWSMetadataCredentials.logger = ap.logger
|
|
return ap.AWSMetadataCredentials
|
|
}
|
|
ap.AWSProfileCredentials.logger = ap.logger
|
|
return ap.AWSProfileCredentials
|
|
}
|
|
|
|
func (ap *awsSigningAuthPlugin) NewClient(c Config) (*http.Client, error) {
|
|
t, err := DefaultTLSConfig(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := ap.validateConfig(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if ap.logger == nil {
|
|
ap.logger = c.logger
|
|
}
|
|
|
|
return DefaultRoundTripperClient(t, *c.ResponseHeaderTimeoutSeconds), nil
|
|
}
|
|
|
|
func (ap *awsSigningAuthPlugin) Prepare(req *http.Request) error {
|
|
ap.logger.Debug("Signing request with AWS credentials.")
|
|
return signV4(req, ap.AWSService, ap.awsCredentialService(), time.Now())
|
|
}
|
|
|
|
func (ap *awsSigningAuthPlugin) validateConfig() error {
|
|
cfgs := map[bool]int{}
|
|
cfgs[ap.AWSEnvironmentCredentials != nil]++
|
|
cfgs[ap.AWSMetadataCredentials != nil]++
|
|
cfgs[ap.AWSWebIdentityCredentials != nil]++
|
|
cfgs[ap.AWSProfileCredentials != nil]++
|
|
|
|
switch n := cfgs[true]; {
|
|
case n == 0:
|
|
return errors.New("a AWS credential service must be specified when S3 signing is enabled")
|
|
case n > 1:
|
|
return errors.New("exactly one AWS credential service must be specified when S3 signing is enabled")
|
|
}
|
|
|
|
if ap.AWSMetadataCredentials != nil {
|
|
if ap.AWSMetadataCredentials.RegionName == "" {
|
|
return errors.New("at least aws_region must be specified for AWS metadata credential service")
|
|
}
|
|
}
|
|
if ap.AWSWebIdentityCredentials != nil {
|
|
if err := ap.AWSWebIdentityCredentials.populateFromEnv(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if ap.AWSService == "" {
|
|
ap.AWSService = awsSigv4SigningDefaultService
|
|
}
|
|
return nil
|
|
}
|