feat: Add configurable AWS credential provider selection#1
Merged
vlasopoulos merged 2 commits intomainfrom Mar 20, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a package-level configuration switch to explicitly select which AWS SDK credential provider is used when signing RDS IAM auth tokens, while keeping the existing “default SDK chain” behavior as the default.
Changes:
- Added
credential_providerconfig option (andRDS_IAM_CREDENTIAL_PROVIDERenv var) with a fixed set of supported provider names. - Updated token generation to use the configured credential provider instead of always using the SDK default chain.
- Added tests and documentation/CHANGELOG entries for the new configuration.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
src/RdsAuthTokenProvider.php |
Introduces resolveCredentialProvider() and wires it into AuthTokenGenerator creation. |
config/rds-iam-auth.php |
Adds credential_provider config key backed by RDS_IAM_CREDENTIAL_PROVIDER. |
tests/RdsAuthTokenProviderTest.php |
Adds coverage for supported provider names and unsupported provider error handling. |
README.md |
Documents the new config option and env var. |
CHANGELOG.md |
Notes the new configurable credential provider feature under Unreleased. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
dimoschi
approved these changes
Mar 20, 2026
Collaborator
dimoschi
left a comment
There was a problem hiding this comment.
Looks nice and useful. Thank you @vlasopoulos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
credential_providerconfig option (RDS_IAM_CREDENTIAL_PROVIDERenv) to override which AWS credential provider is used for token signingdefault,environment,ecs,web_identity,instance_profile,sso,inidefault(full SDK chain) — no breaking changes