Browse Source

Fix panic on acl token read with -self and -expanded

pull/13787/head
Jared Kirschner 2 years ago
parent
commit
927033e672
  1. 3
      .changelog/13787.txt
  2. 7
      command/acl/token/read/token_read.go

3
.changelog/13787.txt

@ -0,0 +1,3 @@
```release-note:bug
cli: when `acl token read` is used with the `-self` and `-expanded` flags, return an error instead of panicking
```

7
command/acl/token/read/token_read.go

@ -92,6 +92,13 @@ func (c *cmd) Run(args []string) int {
return 1
}
} else {
// TODO: consider updating this CLI command and underlying HTTP API endpoint
// to support expanded read of a "self" token, which is a much better user workflow.
if c.expanded {
c.UI.Error("Cannot use both -expanded and -self. Instead, use -expanded and -id=<accessor id>.")
return 1
}
t, _, err = client.ACL().TokenReadSelf(nil)
if err != nil {
c.UI.Error(fmt.Sprintf("Error reading token: %v", err))

Loading…
Cancel
Save