known issue for sts configuration (#29993)

This commit is contained in:
kpcraig 2025-03-24 17:41:01 -04:00 committed by GitHub
parent 2dfc88f157
commit 8d0743c16d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,27 @@
### STS configuration can fail if STS endpoints are unspecified
#### Affected Versions
- 1.19.0
#### Issue
When configuring an sts endpoint in the AWS Secrets engine, when no sts_endpoint is set, the engine will return
an error stating that the number of endpoints and regions do not match:
```
{"errors":["number of regions does not match number of endpoints"]}
```
#### Workaround
Explicitly set the default endpoint and region when configuring sts:
```
{
...
sts_region = "us-east-1"
sts_endpoint = "https://sts.amazonaws.com"
...
}
```