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/variables.tf
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,24 @@ variable "prime_fsxid" {
12
12
default="fs-020de2687bd98ccf7"
13
13
}
14
14
15
+
variable"prime_clus_name" {
16
+
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."
17
+
type=string
18
+
default="primary_clus"
19
+
}
20
+
15
21
variable"prime_svm" {
16
22
description="Name of svm for replication in the primary cluster."
17
23
type=string
18
24
default="vs1cli"
19
25
}
20
26
27
+
variable"prime_cluster_vserver" {
28
+
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"
29
+
type=string
30
+
default="FsxId020de2687bd98ccf7"
31
+
}
32
+
21
33
variable"prime_aws_region" {
22
34
description="AWS regionfor the Primary ONTAP FSxN"
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."
65
+
type=string
66
+
default="dr_clus"
67
+
}
68
+
51
69
variable"dr_fsx_deploy_type" {
52
70
description="The file system deployment type. Supported values are 'MULTI_AZ_1', 'SINGLE_AZ_1', 'MULTI_AZ_2', and 'SINGLE_AZ_2'. MULTI_AZ_1 and SINGLE_AZ_1 are Gen 1. MULTI_AZ_2 and SINGLE_AZ_2 are Gen 2."
53
71
type=string
@@ -70,7 +88,7 @@ variable "dr_fsx_subnets" {
70
88
variable"dr_fsx_capacity_size_gb" {
71
89
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."
0 commit comments