mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-04 22:32:09 -04:00
Fix lease_renewable output
This commit is contained in:
parent
6db89d2a95
commit
f42a100d03
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ func outputFormatTable(ui cli.Ui, s *api.Secret, whitespace bool) int {
|
|||
input = append(input, fmt.Sprintf(
|
||||
"lease_duration %s %d", config.Delim, s.LeaseDuration))
|
||||
input = append(input, fmt.Sprintf(
|
||||
"lease_renewable %s %d", config.Delim, strconv.FormatBool(s.Renewable)))
|
||||
"lease_renewable %s %s", config.Delim, strconv.FormatBool(s.Renewable)))
|
||||
}
|
||||
|
||||
for k, v := range s.Data {
|
||||
|
|
|
|||
Loading…
Reference in a new issue