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

Add in logic for handling a field of 'data' to kv get #4895

Merged
merged 1 commit into from
Jul 11, 2018
Merged
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
10 changes: 10 additions & 0 deletions command/kv_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,16 @@ func (c *KVGetCommand) Run(args []string) int {
if v2 {
// This is a v2, pass in the data field
if data, ok := secret.Data["data"]; ok && data != nil {
// If they requested a literal "data" see if they meant actual
// value or the data block itself
if c.flagField == "data" {
if dataMap, ok := data.(map[string]interface{}); ok {
if _, ok := dataMap["data"]; ok {
return PrintRawField(c.UI, dataMap, c.flagField)
}
}
return PrintRawField(c.UI, secret, c.flagField)
}
return PrintRawField(c.UI, data, c.flagField)
} else {
c.UI.Error(fmt.Sprintf("No data found at %s", path))
Expand Down