Skip to content

Commit

Permalink
Add known issue notice for AWS auth panic (#23552)
Browse files Browse the repository at this point in the history
* Add known issue
  • Loading branch information
robmonte committed Oct 6, 2023
1 parent 20efd6d commit fe0e15a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
5 changes: 3 additions & 2 deletions website/content/docs/release-notes/1.15.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ description: |-
Version | Issue
------- | -----
1.15.0+ | [Vault no longer reports rollback metrics by mountpoint](/vault/docs/upgrading/upgrade-to-1.15.x#rollback-metrics)
1.15.0 | [Panic in AWS auth method during IAM-based login](/vault/docs/upgrading/upgrade-to-1.15.x#panic-in-aws-auth-method-during-iam-based-login)

## Vault companion updates

Expand Down Expand Up @@ -59,7 +60,7 @@ Follow the learn more links for more information, or browse the list of
</tr>
</thead>
<tbody>

<tr>
<td rowSpan={2} style={{verticalAlign: 'middle'}}>
Vault Agent
Expand All @@ -76,7 +77,7 @@ Follow the learn more links for more information, or browse the list of
<tr>
<td style={{verticalAlign: 'middle', textAlign: 'center'}}>GA</td>
<td style={{verticalAlign: 'middle'}}>
Fetch secrets directly into your application as environment variables.
Fetch secrets directly into your application as environment variables.
<br /><br />
Learn more: <a href="/vault/docs/agent-and-proxy/agent/process-supervisor">Process Supervisor Mode</a>
</td>
Expand Down
2 changes: 2 additions & 0 deletions website/content/docs/upgrading/upgrade-to-1.15.x.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,5 @@ option.
@include 'known-issues/transit-managed-keys-panics.mdx'

@include 'known-issues/transit-managed-keys-sign-fails.mdx'

@include 'known-issues/aws-auth-panics.mdx'
18 changes: 18 additions & 0 deletions website/content/partials/known-issues/aws-auth-panics.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### Panic in AWS auth method during IAM-based login

#### Affected versions

- 1.15.0

#### Issue

A panic can occur in the AWS auth method during [IAM-based](/vault/docs/auth/aws#iam-auth-method)
login when a [client config](/vault/api-docs/auth/aws#configure-client) does not exist.

#### Workaround

The panic can be avoided by writing an empty [client config](/vault/api-docs/auth/aws#configure-client):

```shell-session
vault write -f auth/aws/config/client
```

0 comments on commit fe0e15a

Please sign in to comment.