Skip to content

Commit

Permalink
feat: add flag to providers/vault optionally fetch secret metadata (#219
Browse files Browse the repository at this point in the history
)

The `WithMeta` flag specifies whether the secret should be returned with
its metadata. This is useful in most cases where the secret metadata is
not required. This also allows the secret to be read as `k.String("value")`
instead of `k.String("data.value")`.
  • Loading branch information
Thunderbottom committed May 24, 2023
1 parent c82882d commit 9316ceb
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions providers/vault/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ type Config struct {

// Internal HTTP client timeout
Timeout time.Duration

// WithMeta states whether the secret should be returned with its metadata.
// If WithMeta is true, the value for data `key` and the metadata `version`
// can be accessed as `k.String("data.key")` and `k.Int("metadata.version")`.
// When set to false, no metadata will be returned, and the data can be
// accessed as `k.String("key")`.
WithMeta bool
}

type Vault struct {
Expand Down Expand Up @@ -65,11 +72,17 @@ func (r *Vault) Read() (map[string]interface{}, error) {
return nil, err
}

if !r.cfg.FlatPaths {
data := maps.Unflatten(secret.Data, r.cfg.Delim)
s := secret.Data
if !r.cfg.WithMeta {
s = secret.Data["data"].(map[string]interface{})
}

// Unflatten only when a delimiter is specified
if !r.cfg.FlatPaths && r.cfg.Delim != "" {
data := maps.Unflatten(s, r.cfg.Delim)

return data, nil
}

return secret.Data, nil
return s, nil
}

0 comments on commit 9316ceb

Please sign in to comment.