Merge pull request #13787 from hashicorp/fix-acl-read-token-self-expanded-panic

Fix panic on acl token read with -self and -expanded
pull/13799/head
Jared Kirschner 2022-07-18 20:34:50 -04:00 committed by GitHub
commit 067272b53f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

3
.changelog/13787.txt Normal file
View File

@ -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
```

View File

@ -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))