Skip to content

Commit

Permalink
fix: load AWS config and assume role
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Davim <[email protected]>
  • Loading branch information
luisdavim committed Aug 3, 2023
1 parent e95ecde commit e0fc0d0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 24 deletions.
27 changes: 5 additions & 22 deletions velero-plugin-for-aws/object_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ package main

import (
"crypto/tls"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/service/sts"
"io"
"net/http"
"os"
Expand All @@ -30,7 +28,6 @@ import (

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/endpoints"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down Expand Up @@ -268,9 +265,8 @@ func readCustomerKey(customerKeyEncryptionFile string) (string, error) {
// newSessionOptions creates a session.Options with the given config and profile. If
// caCert and credentialsFile are provided, these will be used for the CustomCABundle
// and the credentials for the session.
func newSessionOptions(config aws.Config, profile string, caCert string, credentialsFile string, enableSharedConfig string) (session.Options, error) {
func newSessionOptions(config aws.Config, profile, caCert, credentialsFile, enableSharedConfig string) (session.Options, error) {
sessionOptions := session.Options{Config: config, Profile: profile}

if caCert != "" {
sessionOptions.CustomCABundle = strings.NewReader(caCert)
}
Expand All @@ -282,23 +278,10 @@ func newSessionOptions(config aws.Config, profile string, caCert string, credent
}
return session.Options{}, errors.Wrapf(err, "could not get credentialsFile info")
}
sessionOptions.SharedConfigFiles = []string{credentialsFile}

if sharedConfig, berr := strconv.ParseBool(enableSharedConfig); sharedConfig && berr == nil {
sessionOptions.SharedConfigState = session.SharedConfigEnable
}
} else if len(os.Getenv("AWS_ROLE_ARN")) > 0 {
// Assume we're running in a pod with a service account
sess := session.Must(session.NewSession())
conf := config.WithCredentialsChainVerboseErrors(true).
WithCredentials(credentials.NewCredentials(stscreds.NewWebIdentityRoleProvider(
sts.New(sess),
os.Getenv("AWS_ROLE_ARN"),
"",
os.Getenv("AWS_WEB_IDENTITY_TOKEN_FILE"),
)))
sessionOptions.Config = *conf
sessionOptions.SharedConfigFiles = append(sessionOptions.SharedConfigFiles, credentialsFile)
sessionOptions.SharedConfigState = session.SharedConfigEnable
}

return sessionOptions, nil
}

Expand All @@ -314,7 +297,7 @@ func newAWSConfig(url, region string, forcePathStyle bool) (*aws.Config, error)

awsConfig = awsConfig.WithEndpointResolver(
endpoints.ResolverFunc(func(service, region string, optFns ...func(*endpoints.Options)) (endpoints.ResolvedEndpoint, error) {
if service == endpoints.S3ServiceID {
if service == s3.EndpointsID {
return endpoints.ResolvedEndpoint{
URL: url,
}, nil
Expand Down
10 changes: 8 additions & 2 deletions velero-plugin-for-aws/volume_snapshotter.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/pkg/errors"
Expand All @@ -37,14 +38,14 @@ import (
)

const (
regionKey = "region"
regionKey = "region"
ebsCSIDriver = "ebs.csi.aws.com"
)

// iopsVolumeTypes is a set of AWS EBS volume types for which IOPS should
// be captured during snapshot and provided when creating a new volume
// from snapshot.
var iopsVolumeTypes = sets.NewString("io1","io2")
var iopsVolumeTypes = sets.NewString("io1", "io2")

type VolumeSnapshotter struct {
log logrus.FieldLogger
Expand All @@ -58,9 +59,14 @@ func getSession(options session.Options) (*session.Session, error) {
return nil, errors.WithStack(err)
}

if len(os.Getenv("AWS_ROLE_ARN")) > 0 {
sess.Config.WithCredentials(stscreds.NewCredentials(sess, os.Getenv("AWS_ROLE_ARN")))
}

if _, err := sess.Config.Credentials.Get(); err != nil {
return nil, errors.WithStack(err)
}

return sess, nil
}

Expand Down

0 comments on commit e0fc0d0

Please sign in to comment.