berenddeboer / cdk-rds-sql

A CDK construct that allows creating roles and databases an on Aurora Serverless Postgresql cluster.
Apache License 2.0
23 stars 11 forks source link

error in documentation #40

Open christian-andersson opened 2 weeks ago

christian-andersson commented 2 weeks ago

the main documentation for setting up the provider have the following const provider = new Provider(this, "Provider", { vpc: vpc, vpcSubnet: { subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS, }, cluster: cluster, secret: cluster.secret!, })

ie it states that we should use vpcSubnet, but it looks like it should be vpcSubnets.