-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Multi-AZ support for aws_fsx_windows_file_system #11246
Comments
@pmcevoy, From what I'm reading in the API documentation, it will require a new option (string) for DeploymentType and an IF condition, if DeploymentType = Multi-AZ, then enter a value for PreferredSubnetId. so not so simple to implement. The API has changed. |
Surely Multi-AZ is implied when more than one id is supplied in the |
From what I see, both in the Console and the API, there's this new option DeploymentType that takes a string value of MULTI_AZ_1 | SINGLE_AZ_1, with the later being the default. When MULTI_AZ_1 is selected, another new option has to be completed, PreferredSubnetId. See Request Syntax: You have That's why I think that additional code is required to address these 2 new objects, just listing 2 subnets in SubnetIds won't automatically convert the deployment to multi-AZ. |
Ah - what I mean is that the -resource provider- api does not need to change: certainly internally the implementation does need to pass those settings. Unfortunately I am no Go expert so cannot even attempt a fix.. |
CloudFormation now supports MultiAz: |
Any update on support for multi-az? |
@pmcevoy this issue has (finally) been solved by PR#12676 Thank you @DrFaust92! And thank you @breathingdust for approving & merging! We've been waiting for this functionality since Dec'19 |
This has been released in version 3.0.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! |
Community Note
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)
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 IdsReferences
The text was updated successfully, but these errors were encountered: