You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I've just installed Teller (2.0 from homebrew), but I cannot get it to work with secrets that I have in AWS secretsmanager, and I cannot find an example configuration to try either.
But aws secretsmanager get-secret-value --secret-id my/aws/secrets/path/my-secret works (and the secret value is just a single string). I'm obviously doing something wrong, but I'm not sure what!
The text was updated successfully, but these errors were encountered:
Oh, thanks for the hint. And after looking through the code I now realise that the secret manager secrets have to actually be JSON values, whereas I was using a separate secret for each value (stored as a plain text value)!
Would it be possible to allow single plain text values as secrets (instead of a JSON dict), or is it just generally recommended to use a dict anyway? (Though Teller does seem to work nicely anyway, so not essential)
I cant speak for the maintainers position but the K:V style keeps things pretty consistent between providers and interoperable with lots of secret pulling tools such as the ones in the k8s ecosystem.
Is there a specific usecase your looking for here or tooling workflow that can add more context to the request?
Hi, I've just installed Teller (2.0 from homebrew), but I cannot get it to work with secrets that I have in AWS secretsmanager, and I cannot find an example configuration to try either.
My teller.yaml:
But
teller show
just returnsError: NOT FOUND /my/aws/secrets/path: not found
And I've also tried variations on that, e.g.
gives
Error: expected value at line 1 column 1
But
aws secretsmanager get-secret-value --secret-id my/aws/secrets/path/my-secret
works (and the secret value is just a single string). I'm obviously doing something wrong, but I'm not sure what!The text was updated successfully, but these errors were encountered: