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
AWS IAM Authentication uses AWS IAM permissioning to generate a temporary (15 minute) password when connecting to the database.
Ideally, there would be a way to have a credentials provider that generated the credentials for each physical connection.
const pool = new Pool({ user: 'dbuser', host: 'database.server.com', database: 'mydb', port: 3211, async dynamic(config) { const password = ''; // retrieve and cache password return { ...config, password }; } });
The text was updated successfully, but these errors were encountered:
@pauldraper There is 😄 #1926
Sorry, something went wrong.
No branches or pull requests
AWS IAM Authentication uses AWS IAM permissioning to generate a temporary (15 minute) password when connecting to the database.
Ideally, there would be a way to have a credentials provider that generated the credentials for each physical connection.
The text was updated successfully, but these errors were encountered: