-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[New Service]: AWS Backup Restore Testing #37662
Comments
Community NoteVoting for Prioritization
Volunteering to Work on This Issue
|
Closed via #37039. |
Warning This issue has been closed, meaning that any additional comments are hard for our team to see. Please assume that the maintainers will not see them. Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed. |
This functionality has been released in v5.72.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
On Nov 27 - 2023, AWS announced the AWS Backup restore testing. This can be used to automate the DR testing based on the AWS Backups. They made a blog post showing how it works.
Requested Resource(s) and/or Data Source(s)
Resource
Data
Potential Terraform Configuration
References
AWS Go SDK v2
Create:
Delete:
Get:
List:
Update:
AWS CLI examples
AWS CLI version
2.15.56
.Ordered by execution, like create, get, list, update, and delete.
Create:
aws backup \ create-restore-testing-plan \ --restore-testing-plan 'RecoveryPointSelection={Algorithm=LATEST_WITHIN_WINDOW,ExcludeVaults=[],IncludeVaults=[*],RecoveryPointTypes=["SNAPSHOT","CONTINUOUS"],SelectionWindowDays=7},RestoreTestingPlanName="test001",ScheduleExpression="cron(30 0 ? * * *)",ScheduleExpressionTimezone="Europe/Amsterdam",StartWindowHours=8'
Get:
aws backup \ get-restore-testing-plan \ --restore-testing-plan-name "test001"
List:
aws backup \ list-restore-testing-selections \ --restore-testing-plan-name "test001"
Update:
Delete:
This needs to be deleted first, otherwise, you'll get the error
An error occurred (InvalidRequestException) when calling the DeleteRestoreTestingPlan operation: Related restore testing selections must be deleted prior to deleting restore testing plan [test001].
aws backup \ delete-restore-testing-plan \ --restore-testing-plan-name "test001" \
Would you like to implement a fix?
No
The text was updated successfully, but these errors were encountered: