Skip to content

Commit

Permalink
Add identity details to error messages (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
horjulf authored Jun 16, 2021
1 parent 23d5d35 commit f44b6e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions vault/data_identity_entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,16 @@ func identityEntityLookup(client *api.Client, data map[string]interface{}) (*api
resp, err := client.Logical().Write("identity/lookup/entity", data)

if err != nil {
return nil, fmt.Errorf("Error reading Identity Entity: %s", err)
return nil, fmt.Errorf("Error reading Identity Entity '%v': %s", data, err)
}

if resp == nil {
return nil, fmt.Errorf("no Identity Entity found")
return nil, fmt.Errorf("no Identity Entity found '%v'", data)
}

_, ok := resp.Data["id"]
if !ok {
return nil, fmt.Errorf("no Identity Entity found")
return nil, fmt.Errorf("no Identity Entity found '%v'", data)
}

return resp, nil
Expand Down
6 changes: 3 additions & 3 deletions vault/data_identity_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,16 @@ func identityGroupLookup(client *api.Client, data map[string]interface{}) (*api.
resp, err := client.Logical().Write("identity/lookup/group", data)

if err != nil {
return nil, fmt.Errorf("Error reading Identity Group: %s", err)
return nil, fmt.Errorf("Error reading Identity Group '%v': %s", data, err)
}

if resp == nil {
return nil, fmt.Errorf("no Identity Group found")
return nil, fmt.Errorf("no Identity Group found '%v'", data)
}

_, ok := resp.Data["id"]
if !ok {
return nil, fmt.Errorf("no Identity Group found")
return nil, fmt.Errorf("no Identity Group found '%v'", data)
}

return resp, nil
Expand Down

0 comments on commit f44b6e9

Please sign in to comment.