mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
AWS Auth: Update error message to include underlying error (#11638)
This commit is contained in:
parent
380d34395c
commit
c1e9469f2a
2 changed files with 4 additions and 1 deletions
|
|
@ -1364,7 +1364,7 @@ func (b *backend) pathLoginUpdateIam(ctx context.Context, req *logical.Request,
|
|||
if roleEntry.InferredEntityType == ec2EntityType {
|
||||
instance, err := b.validateInstance(ctx, req.Storage, entity.SessionInfo, roleEntry.InferredAWSRegion, callerID.Account)
|
||||
if err != nil {
|
||||
return logical.ErrorResponse(fmt.Sprintf("failed to verify %s as a valid EC2 instance in region %s", entity.SessionInfo, roleEntry.InferredAWSRegion)), nil
|
||||
return logical.ErrorResponse("failed to verify %s as a valid EC2 instance in region %s: %s", entity.SessionInfo, roleEntry.InferredAWSRegion, err), nil
|
||||
}
|
||||
|
||||
// build a fake identity doc to pass on metadata about the instance to verifyInstanceMeetsRoleRequirements
|
||||
|
|
|
|||
3
changelog/11638.txt
Normal file
3
changelog/11638.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
auth/aws: Underlying error included in validation failure message.
|
||||
```
|
||||
Loading…
Reference in a new issue