Skip to content

Commit

Permalink
feat!: No longer provide default instanceType, default to CDK's
Browse files Browse the repository at this point in the history
DatabaseInstance's defaults (m5.large).
  • Loading branch information
alukach committed Oct 26, 2022
1 parent 0bcab30 commit 8657662
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ export class PgStacDatabase extends Construct {

this.db = new rds.DatabaseInstance(this, "db", {
instanceIdentifier: Stack.of(this).stackName,
instanceType: ec2.InstanceType.of(
ec2.InstanceClass.BURSTABLE3,
ec2.InstanceSize.SMALL
),
parameterGroup,
...props,
});
Expand Down

0 comments on commit 8657662

Please sign in to comment.