Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
In November 2019, AWS announced Multi-AZ support for Amazon FSx for Windows. Can the aws_fsx_windows_file_system be updated to support this?
New or Affected Resource(s)
- aws_fsx_windows_file_system
Potential Terraform Configuration
The existing terraform config syntax does not necessarily need to change - just remove the precondition on subnet_ids containing only 1 subnet id. Multi-AZ can be indicated by providing 2 subnet Ids
resource "aws_fsx_windows_file_system" "example" {
active_directory_id = "${aws_directory_service_directory.example.id}"
kms_key_id = "${aws_kms_key.example.arn}"
storage_capacity = 300
subnet_ids = ["${aws_subnet.example.id}", "${aws_subnet.example2.id}"]
throughput_capacity = 1024
}
References
For Windows MULTI_AZ_1 file system deployment types, provide exactly two subnet IDs, one for the preferred file server and one for the standy file server.
Community Note
Description
In November 2019, AWS announced Multi-AZ support for Amazon FSx for Windows. Can the
aws_fsx_windows_file_systembe updated to support this?New or Affected Resource(s)
Potential Terraform Configuration
The existing terraform config syntax does not necessarily need to change - just remove the precondition on
subnet_idscontaining only 1 subnet id. Multi-AZ can be indicated by providing 2 subnet IdsReferences