Skip to content

Commit

Permalink
don't write nostrongbox as strongbox in config
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmitchell committed Nov 4, 2019
1 parent da43dce commit f6509b8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions rc/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ type Config struct {
}

type Vault struct {
URL string `yaml:"url"`
Token string `yaml:"token"`
CACerts []string `yaml:"ca_certs,omitempty"`
SkipVerify bool `yaml:"skip_verify"`
//FIXME: NoStrongbox should not go into the config as "strongbox"
NoStrongbox bool `yaml:"strongbox"`
URL string `yaml:"url"`
Token string `yaml:"token"`
CACerts []string `yaml:"ca_certs,omitempty"`
SkipVerify bool `yaml:"skip_verify,omitempty"`
NoStrongbox bool `yaml:"no_strongbox,omitempty"`
}

type oldConfig struct {
Expand Down

0 comments on commit f6509b8

Please sign in to comment.