You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Terraform/deploy-fsx-ontap/module/README.md
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,9 +133,9 @@ module "fsxontap" {
133
133
primarysub = "<YOUR-PRIMARY-SUBNET>"
134
134
secondarysub = "<YOUR-SECONDAY-SUBNET>"
135
135
}
136
-
create_sg = <true / false> // true to create Security Group for the Fs / false otherwise
136
+
create_sg = true // true to create Security Group for the Fs / false otherwise
137
137
cidr_for_sg = "<YOUR-CIDR-BLOCK>"
138
-
fsx_admin_password = "<YOUR_PASSWORD>"
138
+
fsx_secret_name = "<YOUR_SECRET>" // The name of a secret in AWS Secrets Manager that contains the FSxN admin password.
139
139
tags = {
140
140
Terraform = "true"
141
141
Environment = "dev"
@@ -147,7 +147,7 @@ module "fsxontap" {
147
147
> To Override default values assigned to other variables in this module, add them to this source block as well. The above source block includes the minimum requirements only.
148
148
149
149
> [!NOTE]
150
-
> The default deployment type is: MULTI_AZ_1. For SINGLE AZ deployment, override the `fsx_deploy_type` variable in the module block, and make sure to only provide one subnet as `primarysub`
150
+
> The default deployment type is: MULTI_AZ_1. For SINGLE AZ deployment, set the `fsx_deploy_type` variable to SINGLE_AZ_1 in the module block.
151
151
152
152
Please read the vriables descriptions in `variables.tf` file for more information regarding the variables passed to the module block.
description="The ID of the VPC in which the FSxN fikesystem should be deployed"
44
+
description="The ID of the VPC in where the security group will be created."
45
45
type=string
46
46
default=""
47
-
validation {
48
-
condition=var.vpc_id!=""
49
-
error_message="You must provide the ID of the VPC in which the FSxN file system should be deployed."
50
-
}
51
47
}
52
48
53
49
variable"fsx_subnets" {
54
50
description="The subnets from where the file system will be accessible from. For MULTI_AZ_1 deployment type, provide both primvary and secondary subnets. For SINGLE_AZ_1 deployment type, only the primary subnet is used."
description="The number of days to retain automatic backups. Setting this to 0 disables automatic backups. You can retain automatic backups for a maximum of 90 days."
0 commit comments