Skip to content

Commit

Permalink
Secret managers parsing errors - Hashicorp Vault
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Cosentino <[email protected]>
  • Loading branch information
oscerd committed Mar 8, 2023
1 parent 3fe8886 commit 8804dfe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions addons/vault/hashicorp/hashicorp_vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ type Trait struct {
// Enables automatic configuration of the trait.
Auto *bool `property:"auto" json:"auto,omitempty"`
// The Host to use
Host string `property:"host,omitempty"`
Host string `property:"host" json:"host,omitempty"`
// The Port to use
Port string `property:"port,omitempty"`
Port string `property:"port" json:"port,omitempty"`
// The Hashicorp engine to use
Engine string `property:"engine,omitempty"`
Engine string `property:"engine" json:"engine,omitempty"`
// The token to access Hashicorp Vault
Token string `property:"token,omitempty"`
Token string `property:"token" json:"token,omitempty"`
// The scheme to access Hashicorp Vault
Scheme string `property:"scheme,omitempty"`
Scheme string `property:"scheme" json:"scheme,omitempty"`
}

type hashicorpVaultTrait struct {
Expand Down

0 comments on commit 8804dfe

Please sign in to comment.