-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.go
85 lines (71 loc) · 1.46 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package logrus_kinesis
import (
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
)
const defaultRegion = "us-east-1"
// Config has AWS settings.
type Config struct {
AccessKey string
SecretKey string
Region string
Endpoint string
}
// AWSConfig creates *aws.Config object from the fields.
func (c Config) AWSConfig() *aws.Config {
cred := c.awsCredentials()
awsConf := &aws.Config{
Credentials: cred,
Region: stringPtr(c.getRegion()),
}
ep := c.getEndpoint()
if ep != "" {
awsConf.Endpoint = &ep
}
return awsConf
}
func (c Config) awsCredentials() *credentials.Credentials {
// from env
cred := credentials.NewEnvCredentials()
_, err := cred.Get()
if err == nil {
return cred
}
// from param
cred = credentials.NewStaticCredentials(c.AccessKey, c.SecretKey, "")
_, err = cred.Get()
if err == nil {
return cred
}
// from local file
return credentials.NewSharedCredentials("", "")
}
func (c Config) getRegion() string {
if c.Region != "" {
return c.Region
}
reg := envRegion()
if reg != "" {
return reg
}
return defaultRegion
}
func (c Config) getEndpoint() string {
if c.Endpoint != "" {
return c.Endpoint
}
ep := envEndpoint()
if ep != "" {
return ep
}
return ""
}
// envRegion get aws region from env params
func envRegion() string {
return os.Getenv("AWS_REGION")
}
// envEndpoint get aws endpoint from env params
func envEndpoint() string {
return os.Getenv("AWS_ENDPOINT")
}