Skip to content
New issue

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

AWS Bedrock Config - Support for ENV credentials #1562

Open
bioshazard opened this issue Mar 27, 2025 · 1 comment
Open

AWS Bedrock Config - Support for ENV credentials #1562

bioshazard opened this issue Mar 27, 2025 · 1 comment

Comments

@bioshazard
Copy link

bioshazard commented Mar 27, 2025

AWS_BEDROCK_CONFIG currently expects hard coded access token, secret token, and session token. These should all be optional, and we should rely on the ai-sdk to handle whatever credentials we attempt. This would allow my use case which relies on ENV vars like EKS IRSA to let the pod assume the role without hard coded access and secret needed at workload initialization. Will work on this if I have time.

EDIT: I see btw that ai-sdk itself set those keys as optional. IMO you shouldn't even verify any of that, just hand it off to the upstream provider which will handle all the errors anyway and eliminate the chore of accounting for what it provides in the first place as it updates.

interface AmazonBedrockProviderSettings {
    region?: string;
    accessKeyId?: string;
    secretAccessKey?: string;
    sessionToken?: string;
    /**
     * Complete Bedrock configuration for setting advanced authentication and
     * other options. When this is provided, the region, accessKeyId, and
     * secretAccessKey settings are ignored.
     */
    bedrockOptions?: BedrockRuntimeClientConfig;
    generateId?: () => string;
}
@bioshazard
Copy link
Author

oh wait, realizing now that if we just pass bedrockOptions, then you could set the other 3 keys to "n/a"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant