Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support assume role #70

Merged
merged 4 commits into from
Dec 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ instances:
instance: rds-mysql57
aws_access_key: AKIAIOSFODNN7EXAMPLE
aws_secret_key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
aws_role_arn: arn:aws:iam::76784568345:role/my-role
disable_basic_metrics: true
disable_enhanced_metrics: false
labels:
foo: bar
baz: qux
```
If `aws_access_key` and `aws_secret_key` are present, they are used for that instance.
If `aws_role_arn` is present it will assume role otherwise if `aws_access_key` and `aws_secret_key` are present, they are used for that instance.
Otherwise, [default credential provider chain](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials)
is used, which includes `AWS_ACCESS_KEY_ID`/`AWS_ACCESS_KEY` and `AWS_SECRET_ACCESS_KEY`/`AWS_SECRET_KEY` environment variables, `~/.aws/credentials` file,
and IAM role for EC2.
Expand Down
1 change: 1 addition & 0 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ type Instance struct {
Instance string `yaml:"instance"`
AWSAccessKey string `yaml:"aws_access_key"` // may be empty
AWSSecretKey string `yaml:"aws_secret_key"` // may be empty
AWSRoleArn string `yaml:"aws_role_arn"` // may be empty
DisableBasicMetrics bool `yaml:"disable_basic_metrics"`
DisableEnhancedMetrics bool `yaml:"disable_enhanced_metrics"`
Labels map[string]string `yaml:"labels"` // may be empty
Expand Down
36 changes: 29 additions & 7 deletions sessions/sessions.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/rds"
"github.com/prometheus/common/log"
Expand Down Expand Up @@ -65,13 +66,11 @@ func New(instances []config.Instance, client *http.Client, trace bool) (*Session

// use given credentials, or default credential chain
var creds *credentials.Credentials
if instance.AWSAccessKey != "" || instance.AWSSecretKey != "" {
creds = credentials.NewCredentials(&credentials.StaticProvider{
Value: credentials.Value{
AccessKeyID: instance.AWSAccessKey,
SecretAccessKey: instance.AWSSecretKey,
},
})

creds, err := buildCredentials(instance)

if err != nil {
return nil, err
}

// make config with careful logging
Expand Down Expand Up @@ -180,6 +179,29 @@ func (s *Sessions) GetSession(region, instance string) (*session.Session, *Insta
return nil, nil
}

func buildCredentials(instance config.Instance) (*credentials.Credentials, error) {
if instance.AWSRoleArn != "" {
stsSession, err := session.NewSession(&aws.Config{
Region: aws.String(instance.Region),
Credentials: credentials.NewStaticCredentials(instance.AWSAccessKey, instance.AWSSecretKey, ""),
})
if err != nil {
return nil, err
}

return stscreds.NewCredentials(stsSession, instance.AWSRoleArn), nil
}
if instance.AWSAccessKey != "" || instance.AWSSecretKey != "" {
return credentials.NewCredentials(&credentials.StaticProvider{
Value: credentials.Value{
AccessKeyID: instance.AWSAccessKey,
SecretAccessKey: instance.AWSSecretKey,
},
}), nil
}
return nil, nil
}

// AllSessions returns all sessions and instances.
func (s *Sessions) AllSessions() map[*session.Session][]Instance {
return s.sessions
Expand Down