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/fsxn-replicate/DR_FSxN_variables.tf
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
-
# Variables for the Disaster Recovery FSxN system to be created.
1
+
# Variables for the Disaster Recovery FSx for ONTAP file system to be created.
2
2
3
3
variable"dr_aws_region" {
4
-
description="AWS regionfor the Secondary(DR) ONTAP FSxN"
4
+
description="AWS region where you want the Secondary(DR) FSx for ONTAP file system."
5
5
type=string
6
6
default=""
7
7
}
8
8
9
9
variable"dr_fsx_name" {
10
-
description="The name to assign to the destination FSxN file system."
10
+
description="The name to assign to the destination FSx for ONTAP file system."
11
11
type=string
12
12
default=""
13
13
}
@@ -38,7 +38,7 @@ variable "dr_fsx_subnets" {
38
38
}
39
39
40
40
variable"dr_fsx_capacity_size_gb" {
41
-
description="The storage capacity in GiBs of the FSxN file system. Valid values between 1024 (1 TiB) and 1048576 (1 PiB). Gen 1 deployment types are limited to 192 TiB. Gen 2 Multi AZ is limited to 512 TiB. Gen 2 Single AZ is limited to 1 PiB."
41
+
description="The storage capacity in GiBs of the FSx for ONTAP file system. Valid values between 1024 (1 TiB) and 1048576 (1 PiB). Gen 1 deployment types are limited to 192 TiB. Gen 2 Multi AZ is limited to 512 TiB. Gen 2 Single AZ is limited to 1 PiB."
42
42
type=number
43
43
default=1024
44
44
validation {
@@ -68,13 +68,13 @@ variable "dr_ha_pairs" {
68
68
}
69
69
70
70
variable"dr_endpoint_ip_address_range" {
71
-
description="The IP address range that the FSxN file system will be accessible from. This is only used for Multi AZ deployment types and must be left a null for Single AZ deployment types."
71
+
description="The IP address range that the FSx for ONTAP file system will be accessible from. This is only used for Multi AZ deployment types and must be left a null for Single AZ deployment types."
72
72
type=string
73
73
default=null
74
74
}
75
75
76
76
variable"dr_route_table_ids" {
77
-
description="An array of routing table IDs that will be modified to allow access to the FSxN file system. This is only used for Multi AZ deployment types and must be left as null for Single AZ deployment types."
77
+
description="An array of routing table IDs that will be modified to allow access to the FSx for ONTAP file system. This is only used for Multi AZ deployment types and must be left as null for Single AZ deployment types."
description="Tags to be applied to the FSxN file system. The format is '{Name1 = value, Name2 = value}' where value should be enclosed in double quotes."
89
+
description="Tags to be applied to the FSx for ONTAP file system. The format is '{Name1 = value, Name2 = value}' where value should be enclosed in double quotes."
* These last set of variables have to do with a security group that can be optionally
136
136
* created. The security group will have all the ingress rules that will allow access
137
-
* to all the protocols that an FSxN supports (e.g. SMB, NFS, etc). See the security_groups.tf
137
+
* to all the protocols that an FSx for ONTAP file system supports (e.g. SMB, NFS, etc). See the security_groups.tf
138
138
* for more information.
139
139
*
140
140
* If you decide to create the security group, you can specify either the CIDR block to
@@ -170,19 +170,19 @@ variable "dr_cidr_for_sg" {
170
170
}
171
171
172
172
variable"dr_source_sg_id" {
173
-
description="The ID of the security group to allow access to the FSxN file system. Set to an empty string if you want to use the cidr_for_sg as the source."
173
+
description="The ID of the security group to allow access to the FSx for ONTAP file system. Set to an empty string if you want to use the cidr_for_sg as the source."
174
174
type=string
175
175
default=""
176
176
}
177
177
178
178
variable"dr_vpc_id" {
179
-
description="The VPC ID where the DR FSxN and security group will be created."
179
+
description="The VPC ID where the DR FSx for ONTAP file system and security group will be created."
180
180
type=string
181
181
default=""
182
182
}
183
183
184
184
variable"dr_username_pass_secrets_id" {
185
-
description="Name of secret ID in AWS secrets"
185
+
description="Name of secret ID in AWS secrets. This secret needs to be in the same region as the DR FSx for ONTAP file system."
Copy file name to clipboardExpand all lines: Terraform/fsxn-replicate/Primary_FSxN_variables.tf
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ variable "prime_hostname" {
5
5
}
6
6
7
7
variable"prime_fsxid" {
8
-
description="FSx ID of the primary cluster."
8
+
description="FSx for ONTAP file system ID of the primary cluster."
9
9
type=string
10
10
default=""
11
11
}
12
12
13
13
variable"prime_clus_name" {
14
-
description="This is the name of the cluster given for ONTAP TF connection profile. This is a user creatred value, that can be any string. It is referenced in many ONTAP TF resources."
14
+
description="This is the name of the cluster given for ONTAP TerraForm connection profile. This is a user creatred value, that can be any string. It is referenced in many ONTAP TF resources."
15
15
type=string
16
16
default="primary_clus"
17
17
}
@@ -23,19 +23,19 @@ variable "prime_svm" {
23
23
}
24
24
25
25
variable"prime_cluster_vserver" {
26
-
description="Name of cluster vserver for inter cluster lifs in the primary cluster. This can be found by running network interface show on the source cluster. It will be formatted like this FsxIdxxxxxxxx"
26
+
description="Name of cluster vserver for inter cluster lifs in the primary cluster. This can be found by running network interface show on the source cluster (network interface show -services default-intercluster). It will be formatted like this FsxIdxxxxxxxx"
27
27
type=string
28
28
default=""
29
29
}
30
30
31
31
variable"prime_aws_region" {
32
-
description="AWS regionfor the Primary ONTAP FSxN"
32
+
description="AWS regionfor the Primary FSx for ONTAP file system"
33
33
type=string
34
34
default=""
35
35
}
36
36
37
37
variable"username_pass_secrets_id" {
38
-
description="Name of secret ID in AWS secrets"
38
+
description="Name of secret ID in AWS secrets. This secret needs to be in the same region as the Primary FSx for ONTAP file system."
0 commit comments