-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Closed
Labels
@aws-cdk/aws-rdsRelated to Amazon Relational DatabaseRelated to Amazon Relational DatabasebugThis issue is a bug.This issue is a bug.effort/mediumMedium work item – several days of effortMedium work item – several days of effortp2
Description
Describe the bug
Even though MariaDB support has been added to RDS Proxies, this is not reflected in CDK.
Expected Behavior
Given that MariaDB is supported in RDS Proxies, I'd like this to work.
https://aws.amazon.com/about-aws/whats-new/2022/07/amazon-rds-proxy-mariadb-version-10-support/
Current Behavior
Throws an error saying MariaDB support for proxies is not supported.
Error: Engine 'mariadb-10.6.16' does not support proxies
at ProxyTarget.bind (/home/parallels/Documents/work/call4u-monorepo/infrastructure/node_modules/aws-cdk-lib/aws-rds/lib/proxy.js:1:2928)
Reproduction Steps
/ Create the RDS Proxy
const rdsProxy = new aws_rds.DatabaseProxy(this, `${stackNamePrefix}-DatabaseProxy`, {
proxyTarget: aws_rds.ProxyTarget.fromInstance(databaseInstance),
secrets: [databaseSecret],
vpc,
securityGroups: [rdsProxySecurityGroup],
requireTLS: false, // Optional: set to true to enforce TLS connections
});Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.131.0 (build 92b912d)
Framework Version
No response
Node.js Version
21.6.2
OS
Mac OS
Language
TypeScript
Language Version
No response
Other information
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
@aws-cdk/aws-rdsRelated to Amazon Relational DatabaseRelated to Amazon Relational DatabasebugThis issue is a bug.This issue is a bug.effort/mediumMedium work item – several days of effortMedium work item – several days of effortp2