Skip to content

Commit 8657662

Browse files
committed
feat!: No longer provide default instanceType, default to CDK's
DatabaseInstance's defaults (m5.large).
1 parent 0bcab30 commit 8657662

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/database.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ export class PgStacDatabase extends Construct {
3030

3131
this.db = new rds.DatabaseInstance(this, "db", {
3232
instanceIdentifier: Stack.of(this).stackName,
33-
instanceType: ec2.InstanceType.of(
34-
ec2.InstanceClass.BURSTABLE3,
35-
ec2.InstanceSize.SMALL
36-
),
3733
parameterGroup,
3834
...props,
3935
});

0 commit comments

Comments
 (0)