@@ -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