AWS FSX Lustre provides backups (https://aws.amazon.com/about-aws/whats-new/2020/06/amazon-fsx-lustre-provides-highly-durable-file-system-backups/). To enable them via terraform, we just need to feed through AutomaticBackupRetentionDays and DailyAutomaticBackupStartTime into CreateFileSystemLustreConfiguration in the aws_fsx_lustre_file_system terraform resource.
resource "aws_fsx_lustre_file_system" "example" {
# ... other configuration ...
automatic_backup_retention_days = 1
daily_automatic_backup_start_time = "05:00"
}
I will work on this, and submit a PR.
This has been released in version 3.9.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 for triage. Thanks!
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.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!
Most helpful comment
I will work on this, and submit a PR.