You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(rds): allow cluster from snapshot to enable encrypted storage (#19175)
Closes#17241
Tested by:
```typescript
// 1. Create original cluster with unencrypted storage
new DatabaseCluster(stack, 'Database', {
engine: DatabaseClusterEngine.AURORA,
instanceProps: { vpc },
});
// 2. Take snapshot of cluster (mySnapshot)
// 3. Create cluster from snapshot with encrypted storage
new DatabaseClusterFromSnapshot(stack, 'Database', {
engine: DatabaseClusterEngine.AURORA,
instanceProps: { vpc },
snapshotIdentifier: 'mySnapshot',
storageEncryptionKey: new kms.Key(stack, 'Key'),
});
// 4. Verify new cluster has encrypted storage
```
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
0 commit comments