hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.61k stars 8.99k forks source link

[Enhancement]: Add final backup tags support to `aws_fsx_lustre_file_system` and `aws_fsx_windows_file_system` #37712

Open acwwat opened 1 month ago

acwwat commented 1 month ago

Description

As a follow-up to #36399, the FSx Lustre and Windows file systems also supports additional delete options, specifically FinalBackupTags, as per DeleteFileSystem.

Affected Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_fsx_lustre_file_system" "example" {
  ...
  final_backup_tags {
    key   = "SomeKey"
    value = "SomeValue"
  }
}

resource "aws_fsx_windows_file_system" "example" {
  ...
  final_backup_tags {
    key   = "SomeKey"
    value = "SomeValue"
  }
}

References

Would you like to implement a fix?

Yes

github-actions[bot] commented 1 month ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue