-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(backups)!: Remove stack-level support for configuring DevX Backu…
…ps (#2289) BREAKING CHANGE: DevX Backups can no longer be enabled via the `withBackup` prop, which has been removed. Users should now opt-in/out of DevX Backups at the construct level (i.e. when defining an RDS instance, cluster or DynamoDB table). We recommend using the `GuDatabaseInstance` or `GuDynamoTable` to help with this. If these constructs cannot be used, resources can also be tagged like this: `Tags.of(myDatabase).add("devx-backup-enabled", "true")`.
- Loading branch information
1 parent
d3f97df
commit fa0719b
Showing
4 changed files
with
12 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@guardian/cdk": major | ||
--- | ||
|
||
BREAKING CHANGE: DevX Backups can no longer be enabled via the `withBackup` prop, which has been removed. | ||
|
||
Users should now opt-in/out of DevX Backups at the construct level (i.e. when defining an RDS instance, cluster or | ||
DynamoDB table). | ||
|
||
We recommend using the `GuDatabaseInstance` or `GuDynamoTable` to help with this. If these constructs cannot be used, | ||
resources can also be tagged like this: `Tags.of(myDatabase).add("devx-backup-enabled", "true")`. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters