We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue was originally opened by @itdevon as hashicorp/terraform#24517. It was migrated here as a result of the provider split. The original body of the issue is below.
Having issues with AWS FSx, I have two subnets, but the error indicates only a max of 1 subnet.
Terraform v0.11.14
resource "aws_fsx_windows_file_system" "orapreshopdbfs" { storage_capacity = 2000 subnet_ids = ["subnet-1", "subnet-2"] throughput_capacity = 2048
self_managed_active_directory { dns_ips = ["10.1.1.1", "10.1.1.2"] domain_name = "redacted" organizational_unit_distinguished_name = "redacted" password = "redacted" username = "redacted" } }
Error: aws_fsx_windows_file_system.orapreshopdbfs: subnet_ids: attribute supports 1 item maximum, config has 2 declared
FSx is in mult-zone, so it will need to have two subnets.
Please list the full steps required to reproduce the issue, for example:
terraform plan
-->
The text was updated successfully, but these errors were encountered:
duplicate of #11246
Sorry, something went wrong.
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!
Successfully merging a pull request may close this issue.
This issue was originally opened by @itdevon as hashicorp/terraform#24517. It was migrated here as a result of the provider split. The original body of the issue is below.
Having issues with AWS FSx, I have two subnets, but the error indicates only a max of 1 subnet.
Terraform Version
Terraform v0.11.14
Terraform Configuration Files
resource "aws_fsx_windows_file_system" "orapreshopdbfs" {
storage_capacity = 2000
subnet_ids = ["subnet-1", "subnet-2"]
throughput_capacity = 2048
self_managed_active_directory {
dns_ips = ["10.1.1.1", "10.1.1.2"]
domain_name = "redacted"
organizational_unit_distinguished_name = "redacted"
password = "redacted"
username = "redacted"
}
}
Debug Output
Error: aws_fsx_windows_file_system.orapreshopdbfs: subnet_ids: attribute supports 1 item maximum, config has 2 declared
Expected Behavior
FSx is in mult-zone, so it will need to have two subnets.
Steps to Reproduce
Please list the full steps required to reproduce the issue, for example:
terraform plan
-->
The text was updated successfully, but these errors were encountered: