-
Notifications
You must be signed in to change notification settings - Fork 402
env.AWS_REGION='us-west-2' causes failure #249
Comments
Could you provide some insights into what kind of external secret you applied? Preferably the full manifest (feel free to edit out key names or so), but at least which backend type was used to see if this could be related :) |
The backend is Secrets Manager. A simple manifest like below should recreate the issue apiVersion: kubernetes-client.io/v1
kind: ExternalSecret
metadata:
name: es-keys
spec:
backendType: secretsManager
data:
- key: es-keys/key-1
name: key1 |
I am seeing the same error when using region 'eu-west-1'. The relevant logs are
The secret looks like
Authorization is performed using |
I found the problem. When the SDK is initialized without a specific region (unlike in the tests or using localstack) the environmental variable which has the region should be called Thus, the helm chart needs to be updated. I used
and it works. Hope this helps someone. |
How come it has been 25 days and no one has updated the chart? |
I still receive this error. |
when performing the helm install, add
--set env.AWS_REGION=‘us-west-2’
to the command. Apply an external secret and query your ES. You see an error likeERROR, Invalid character in header content ["Authorization"]
. I did not encounter the same issue when using the us-east-1 region. Of course us-west-2 is the default so this is not a major issue, however it did lead to confusion amongst our team.The text was updated successfully, but these errors were encountered: