From a7bd198b35389083a653d4c3f13e6d5991b9281a Mon Sep 17 00:00:00 2001 From: Junaid Ali Date: Fri, 19 Sep 2025 15:10:54 +0100 Subject: [PATCH] Update README.md --- plugins/aws/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/aws/README.md b/plugins/aws/README.md index 0d0773f63..cbd699916 100644 --- a/plugins/aws/README.md +++ b/plugins/aws/README.md @@ -96,3 +96,14 @@ source_profile = source-profile-name region = us-east-1 output = json ``` + +## NOTES +1. If we see an issue with a `aws` CLI command for a specific region e.g: + ```shell + $ aws eks list-clusters --region me-central-1 + An error occurred (UnrecognizedClientException) when calling the ListClusters operation: The security token included in the request is invalid + ``` + Ensure you're fetching the AWS credentials from a regional STS endpoint i.e: + ```shell + $ AWS_STS_REGIONAL_ENDPOINTS=regional gimme-aws-creds + ```