We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I am trying to retrieve a simple aws secret using teller 2.0.7 and im getting a constant error
.teller.yml
project: my_project opts: stage: development providers: aws_secrete: kind: aws_secretsmanager maps: - id: mykey path: dev/test/mytest keys: myKey: ==
when accessing the secret as aws secretsmanager get-secret-value --secret-id dev/test/mytest, I get a proper json
aws secretsmanager get-secret-value --secret-id dev/test/mytest
{ "ARN": "******************************************:secret:dev/test/mytest-####", "Name": "dev/test/mytest", "VersionId": "************************", "SecretString": "{\"myKey\":\"mySecret\"}", "VersionStages": [ "AWSCURRENT" ], "CreatedDate": "2024-08-19T10:33:12.709000+03:00" }
but running teller show gets
teller show
Error: GET dev/test/mytest: unhandled error Location: /build/source/teller-cli/src/cli.rs:296:23
what am I doing wrong? aws config is:
[profile ##############] sso_session = aaaaaaaaaaa sso_account_id = ############ sso_role_name = PowerUserAccess region = eu-central-1 [sso-session 'aaaaaaaaaaa'] sso_start_url = https://????????.awsapps.com/start sso_region = eu-central-1 sso_registration_scopes = sso:account:access
TIA
The text was updated successfully, but these errors were encountered:
I've managed to resolve this after following hashicorp/terraform-provider-aws#28263 and https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html#sso-configure-profile-manual and creating a "legacy" profile, teller started to work
FYI
Sorry, something went wrong.
No branches or pull requests
Hi
I am trying to retrieve a simple aws secret using teller 2.0.7 and im getting a constant error
.teller.yml
when accessing the secret as
aws secretsmanager get-secret-value --secret-id dev/test/mytest
, I get a proper jsonbut running
teller show
getswhat am I doing wrong?
aws config is:
TIA
The text was updated successfully, but these errors were encountered: