-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPrimary_FSxN_variables.tf
More file actions
47 lines (40 loc) · 1.67 KB
/
Primary_FSxN_variables.tf
File metadata and controls
47 lines (40 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "prime_fsxid" {
description = "FSx for ONTAP file system ID of the primary cluster."
type = string
default = ""
}
variable "prime_clus_name" {
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."
type = string
default = "primary_clus"
}
variable "prime_svm" {
description = "Name of svm for replication in the primary cluster."
type = string
default = ""
}
variable "prime_cluster_vserver" {
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"
type = string
default = ""
}
variable "prime_aws_region" {
description = "AWS regionfor the Primary FSx for ONTAP file system"
type = string
default = ""
}
variable "username_pass_secrets_id" {
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."
type = string
default = ""
}
variable "list_of_volumes_to_replicate" {
description = "list of volumes to replicate to dr fsxn"
type = list(string)
default = []
}
variable "validate_certs" {
description = "Do we validate the cluster certs (true or false). If true then ONTAP requires valid, non-self signed SSL certificates."
type = string
default = "false"
}