Describe the feature
Pls expose the CloudFormation CACertificateIdentifier property on the L2 construct docDb.DatabaseCluster
Use Case
With that one does not have to use Aspects to set the ca certificate
Proposed Solution
If one can guide me I might be able to submit a PR myself.
Other Information
Right now one can use Aspects as a workaround:
import * as docDb from 'aws-cdk-lib/aws-docdb';
let database: docDb.DatabaseCluster;
// ...
cdk.Aspects.of(database).add({
visit: (node) => {
if (node instanceof docDb.CfnDBInstance) {
node.addPropertyOverride('CACertificateIdentifier', 'rds-ca-rsa2048-g1');
}
}
});
Acknowledgements
CDK version used
2.100.0
Environment details (OS name and version, etc.)
macOS 14.2
Describe the feature
Pls expose the CloudFormation CACertificateIdentifier property on the L2 construct
docDb.DatabaseClusterUse Case
With that one does not have to use
Aspectsto set the ca certificateProposed Solution
If one can guide me I might be able to submit a PR myself.
Other Information
Right now one can use
Aspectsas a workaround:Acknowledgements
CDK version used
2.100.0
Environment details (OS name and version, etc.)
macOS 14.2