Skip to content

Commit

Permalink
Merge pull request #67 from NetApp/kerensMac
Browse files Browse the repository at this point in the history
Fixed route table ids argument
  • Loading branch information
kerentraht authored Jan 29, 2024
2 parents 019776e + 5a1e7b4 commit 02d0891
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
5 changes: 1 addition & 4 deletions Terraform/deploy-fsx-ontap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,7 @@ module "fsxontap" {
source = "github.com/Netapp/FSxN-Samples/Terraform/deploy-fsx-ontap"
vpc_id = "<YOUR-VPC-ID>"
fsx_subnets = {
"primarysub" = "<YOUR-PRIMARY-SUBNET>"
"secondarysub" = "<YOUR-SECONDAY-SUBNET>"
}
fsx_subnets = ["<YOUR-PRIMARY-SUBNET>", "<YOUR-SECONDAY-SUBNET>"]
create_sg = <true / false> // true to create Security Group for the Fs / false otherwise
cidr_for_sg = "<YOUR-CIDR-BLOCK>"
fsx_admin_password = "<YOUR_PASSWORD>"
Expand Down
9 changes: 3 additions & 6 deletions Terraform/deploy-fsx-ontap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,9 @@ variable "vpc_id" {
}

variable "fsx_subnets" {
description = "The IDs of the subnets fro which the FSxN filesystem will be assigned IP addresses"
type = map(any)
default = {
"primarysub" = ""
"secondarysub" = ""
}
description = "Specifies the VPC route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table."
type = list(any)
default = null
}

variable "fsx_capacity_size_gb" {
Expand Down

0 comments on commit 02d0891

Please sign in to comment.