Skip to content

Commit 3f4d1d8

Browse files
committed
fix
1 parent 9b348a0 commit 3f4d1d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/rds.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class PostgresRDSCluster extends Construct {
148148
copyTagsToSnapshot: true,
149149
allocatedStorage: props.allocatedStorage,
150150
maxAllocatedStorage: props.maxAllocatedStorage,
151-
StorageType: props.storageType,
151+
storageType: props.storageType,
152152
allowMajorVersionUpgrade: props.allowMajorVersionUpgrade ?? false,
153153
autoMinorVersionUpgrade: props.autoMinorVersionUpgrade ?? false,
154154
};
@@ -203,7 +203,6 @@ export class PostgresRDSCluster extends Construct {
203203
sourceDatabaseInstance: rdsInstance,
204204
subnetGroup: dbSubnetGroup,
205205
deletionProtection: props.deletionProtection ?? true,
206-
storageEncrypted: props.storageEncrypted ?? true,
207206
storageType: props.storageType,
208207
autoMinorVersionUpgrade: props.allowMajorVersionUpgrade ?? false,
209208
allocatedStorage: props.replicaAllocatedStorage ?? props.allocatedStorage,
@@ -245,4 +244,6 @@ export class PostgresRDSCluster extends Construct {
245244
description: 'RDS Security Group ID',
246245
});
247246
}
248-
}
247+
}
248+
249+

0 commit comments

Comments
 (0)