We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a4f21d commit ea45b53Copy full SHA for ea45b53
go.mod
@@ -69,3 +69,5 @@ require (
69
gopkg.in/yaml.v2 v2.2.1 // indirect
70
gotest.tools v2.1.0+incompatible // indirect
71
)
72
+
73
+go 1.13
vault/client.go
@@ -78,6 +78,8 @@ func (v *Vault) Read(path string) map[string]interface{} {
78
}
79
for k, v := range s.Data {
80
switch t := v.(type) {
81
+ case int:
82
+ out[k] = t
83
case string:
84
out[k] = base64.StdEncoding.EncodeToString([]byte(t))
85
case map[string]interface{}:
0 commit comments