CLI: Fix secrets list -detailed headings (#17577)
This commit is contained in:
parent
787e315004
commit
455f1f6073
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
cli: Remove empty table heading for `vault secrets list -detailed` output.
|
||||
```
|
|
@ -145,7 +145,7 @@ func (c *SecretsListCommand) detailedMounts(mounts map[string]*api.MountOutput)
|
|||
}
|
||||
}
|
||||
|
||||
out := []string{"Path | Plugin | Accessor | Default TTL | Max TTL | Force No Cache | Replication | Seal Wrap | External Entropy Access | Options | Description | UUID | Version | Running Version | Running SHA256 | | Deprecation Status"}
|
||||
out := []string{"Path | Plugin | Accessor | Default TTL | Max TTL | Force No Cache | Replication | Seal Wrap | External Entropy Access | Options | Description | UUID | Version | Running Version | Running SHA256 | Deprecation Status"}
|
||||
for _, path := range paths {
|
||||
mount := mounts[path]
|
||||
|
||||
|
|
Loading…
Reference in New Issue