Skip to content

Commit 1861bfb

Browse files
committed
fix(ci): revert bedrock config to use api_key with AWS_BEARER_TOKEN_BEDROCK env var
The bedrock field rename from api_key to aws_bedrock_bearer_token changed the env var name in CI config files but the CI workflows still set the old AWS_BEARER_TOKEN_BEDROCK variable, causing SigV4 credential resolution failures in library-mode bedrock integration tests. Revert the CI config files to use the old field and env var names until the rename PR lands on main with matching workflow updates. Signed-off-by: E Geiger <egeiger@redhat.com>
1 parent 7eb7657 commit 1861bfb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ogx/distributions/ci-tests/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ providers:
4444
- provider_id: bedrock
4545
provider_type: remote::bedrock
4646
config:
47-
aws_bedrock_bearer_token: ${env.AWS_BEDROCK_BEARER_TOKEN:=}
47+
api_key: ${env.AWS_BEARER_TOKEN_BEDROCK:=}
4848
region_name: ${env.AWS_DEFAULT_REGION:=us-east-2}
4949
aws_role_arn: ${env.AWS_ROLE_ARN:=}
5050
aws_web_identity_token_file: ${env.AWS_WEB_IDENTITY_TOKEN_FILE:=}

src/ogx/distributions/ci-tests/run-with-postgres-store.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ providers:
4444
- provider_id: bedrock
4545
provider_type: remote::bedrock
4646
config:
47-
aws_bedrock_bearer_token: ${env.AWS_BEDROCK_BEARER_TOKEN:=}
47+
api_key: ${env.AWS_BEARER_TOKEN_BEDROCK:=}
4848
region_name: ${env.AWS_DEFAULT_REGION:=us-east-2}
4949
aws_role_arn: ${env.AWS_ROLE_ARN:=}
5050
aws_web_identity_token_file: ${env.AWS_WEB_IDENTITY_TOKEN_FILE:=}

0 commit comments

Comments
 (0)