-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathexample_test.go
129 lines (112 loc) · 4.81 KB
/
example_test.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package ssmconfig_test
import (
"fmt"
"log"
"os"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ssm"
ssmconfig "github.com/ianlopshire/go-ssm-config"
)
func ExampleProcess() {
// Assuming the following Parameter Store parameters:
//
// | Name | Value | Type | Key ID |
// | ---------------------------- | -------------------- | ------------ | ------------- |
// | /example_service/prod/debug | false | String | - |
// | /example_service/prod/port | 8080 | String | - |
// | /example_service/prod/user | Ian | String | - |
// | /example_service/prod/rate | 0.5 | String | - |
// | /example_service/prod/secret | zOcZkAGB6aEjN7SAoVBT | SecureString | alias/aws/ssm |
type Config struct {
Debug bool `smm:"debug" default:"true"`
Port int `smm:"port"`
User string `smm:"user"`
Rate float32 `smm:"rate"`
Secret string `smm:"secret" required:"true"`
}
var c Config
err := ssmconfig.Process("/example_service/prod/", &c)
if err != nil {
log.Fatal(err.Error())
}
format := "Debug: %v\nPort: %d\nUser: %s\nRate: %f\nSecret: %s\n"
_, err = fmt.Printf(format, c.Debug, c.Port, c.User, c.Rate, c.Secret)
if err != nil {
log.Fatal(err.Error())
}
}
// ExampleProcess_multipleEnvironments demonstrates how ssmcofig can be used to configure
// multiple environments.
func ExampleProcess_multipleEnvironments() {
// Assuming the following Parameter Store parameters:
//
// | Name | Value | Type | Key ID |
// | ---------------------------- | -------------------- | ------------ | ------------- |
// | /example_service/prod/debug | false | String | - |
// | /example_service/prod/port | 8080 | String | - |
// | /example_service/prod/user | Ian | String | - |
// | /example_service/prod/rate | 0.5 | String | - |
// | /example_service/prod/secret | zOcZkAGB6aEjN7SAoVBT | SecureString | alias/aws/ssm |
// | ---------------------------- | -------------------- | ------------ | ------------- |
// | /example_service/test/debug | true | String | - |
// | /example_service/test/port | 8080 | String | - |
// | /example_service/test/user | Ian | String | - |
// | /example_service/test/rate | 0.9 | String | - |
// | /example_service/test/secret | TBVoAS7NjEa6BGAkZcOz | SecureString | alias/aws/ssm |
type Config struct {
Debug bool `smm:"debug" default:"true"`
Port int `smm:"port"`
User string `smm:"user"`
Rate float32 `smm:"rate"`
Secret string `smm:"secret" required:"true"`
}
// An environment variable is used to set the config path. In this example it would be
// set to `/example_service/test/` for test and `/example_service/prod/` for
// production.
configPath := os.Getenv("CONFIG_PATH")
var c Config
err := ssmconfig.Process(configPath, &c)
if err != nil {
log.Fatal(err.Error())
}
format := "Debug: %v\nPort: %d\nUser: %s\nRate: %f\nSecret: %s\n"
_, err = fmt.Printf(format, c.Debug, c.Port, c.User, c.Rate, c.Secret)
if err != nil {
log.Fatal(err.Error())
}
}
func ExampleProvider_Process() {
// Assuming the following Parameter Store parameters:
//
// | Name | Value | Type | Key ID |
// | ---------------------------- | -------------------- | ------------ | ------------- |
// | /example_service/prod/debug | false | String | - |
// | /example_service/prod/port | 8080 | String | - |
// | /example_service/prod/user | Ian | String | - |
// | /example_service/prod/rate | 0.5 | String | - |
// | /example_service/prod/secret | zOcZkAGB6aEjN7SAoVBT | SecureString | alias/aws/ssm |
type Config struct {
Debug bool `smm:"debug" default:"true"`
Port int `smm:"port"`
User string `smm:"user"`
Rate float32 `smm:"rate"`
Secret string `smm:"secret" required:"true"`
}
sess, err := session.NewSession()
if err != nil {
log.Fatal(err)
}
provider := &ssmconfig.Provider{
SSM: ssm.New(sess),
}
var c Config
err = provider.Process("/example_service/prod/", &c)
if err != nil {
log.Fatal(err.Error())
}
format := "Debug: %v\nPort: %d\nUser: %s\nRate: %f\nSecret: %s\n"
_, err = fmt.Printf(format, c.Debug, c.Port, c.User, c.Rate, c.Secret)
if err != nil {
log.Fatal(err.Error())
}
}