-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
73 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package client | ||
|
||
import ( | ||
"github.com/hashicorp/vault/api" | ||
) | ||
|
||
// Secret holds vault secret and offers operations to simplify KV abstraction | ||
type Secret struct { | ||
vaultSecret *api.Secret | ||
} | ||
|
||
// NewSecret create a new Secret object | ||
func NewSecret(vaultSecret *api.Secret) *Secret { | ||
return &Secret{ | ||
vaultSecret: vaultSecret, | ||
} | ||
} | ||
|
||
// GetAPISecret getter method for vault secret in Secret object | ||
func (secret *Secret) GetAPISecret() *api.Secret { | ||
return secret.vaultSecret | ||
} | ||
|
||
// GetData returns the secret data as a map and is KV agnostic | ||
func (secret *Secret) GetData() map[string]interface{} { | ||
data := make(map[string]interface{}) | ||
for k, v := range secret.vaultSecret.Data { | ||
if rec, ok := v.(map[string]interface{}); ok { | ||
// KV 2 | ||
if k == "data" { | ||
for kk, vv := range rec { | ||
data[kk] = vv | ||
} | ||
} | ||
} else { | ||
// KV 1 | ||
data[k] = v | ||
} | ||
} | ||
return data | ||
} | ||
|
||
// SetData set given data as vault secret data and is KV agnostic | ||
func (secret *Secret) SetData(data map[string]interface{}) { | ||
secret.vaultSecret.Data = data | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters