-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
200 lines (173 loc) · 6.74 KB
/
variables.tf
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
variable "name" {
type = string
default = "imperva-dsf-dra-admin"
description = "Name to identify all resources"
validation {
condition = length(var.name) >= 3
error_message = "Name must be at least 3 characters"
}
validation {
condition = can(regex("^\\p{L}.*", var.name))
error_message = "Must start with a letter"
}
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "instance_type" {
type = string
default = "m4.xlarge"
description = "EC2 instance type for the Admin Server"
}
variable "key_pair" {
type = string
description = "key pair"
}
variable "dra_version" {
type = string
default = "4.17"
description = "The DRA version to install. Supported versions are 4.11.0.10.0.7 and up. Full version format is supported, for example, 4.11.0.10.0.7."
nullable = false
validation {
condition = !startswith(var.dra_version, "4.10.") && !startswith(var.dra_version, "4.9.") && !startswith(var.dra_version, "4.8.") && !startswith(var.dra_version, "4.3.") && !startswith(var.dra_version, "4.2.") && !startswith(var.dra_version, "4.1.")
error_message = "The dra_version value must be 4.11.0.10 or higher"
}
}
variable "admin_registration_password" {
type = string
description = "Password to be used to register Analytics Server to Admin Server"
validation {
condition = length(var.admin_registration_password) >= 7
error_message = "Password must be at least 7 characters long"
}
validation {
condition = can(regex("[A-Z]", var.admin_registration_password))
error_message = "Password must contain at least one uppercase letter"
}
validation {
condition = can(regex("[a-z]", var.admin_registration_password))
error_message = "Password must contain at least one lowercase letter"
}
validation {
condition = can(regex("\\d", var.admin_registration_password))
error_message = "Password must contain at least one digit"
}
validation {
condition = can(regex("[*+=#%^:/~.,\\[\\]_]", var.admin_registration_password))
error_message = "Password must contain at least one of the following special characters: *+=#%^:/~.,[]_"
}
}
variable "admin_ssh_password" {
type = string
description = "Password to be used to ssh to the Admin Server"
validation {
condition = length(var.admin_ssh_password) >= 7
error_message = "Password must be at least 7 characters long"
}
validation {
condition = can(regex("[A-Z]", var.admin_ssh_password))
error_message = "Password must contain at least one uppercase letter"
}
validation {
condition = can(regex("[a-z]", var.admin_ssh_password))
error_message = "Password must contain at least one lowercase letter"
}
validation {
condition = can(regex("\\d", var.admin_ssh_password))
error_message = "Password must contain at least one digit"
}
validation {
condition = can(regex("[*+=#%^:/~.,\\[\\]_]", var.admin_ssh_password))
error_message = "Password must contain at least one of the following special characters: *+=#%^:/~.,[]_"
}
}
variable "subnet_id" {
type = string
description = "Subnet id for the Admin Server"
validation {
condition = length(var.subnet_id) >= 15 && substr(var.subnet_id, 0, 7) == "subnet-"
error_message = "Subnet id is invalid. Must be subnet-********"
}
}
variable "security_group_ids" {
type = list(string)
description = "AWS security group Ids to attach to the instance. If provided, no security groups are created and all allowed_*_cidrs variables are ignored."
validation {
condition = alltrue([for item in var.security_group_ids : substr(item, 0, 3) == "sg-"])
error_message = "One or more of the security group Ids list is invalid. Each item should be in the format of 'sg-xx..xxx'"
}
default = []
}
variable "allowed_analytics_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing the Analytics Server to access the DSF Admin Server instance"
validation {
condition = alltrue([for item in var.allowed_analytics_cidrs : can(cidrnetmask(item))])
error_message = "Each item of this list must be in a valid CIDR block format. For example: [\"10.106.108.0/25\"]"
}
default = []
}
variable "allowed_ssh_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing ssh access"
validation {
condition = alltrue([for item in var.allowed_ssh_cidrs : can(cidrnetmask(item))])
error_message = "Each item of this list must be in a valid CIDR block format. For example: [\"10.106.108.0/25\"]"
}
default = []
}
variable "allowed_web_console_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing web console access"
validation {
condition = alltrue([for item in var.allowed_web_console_cidrs : can(cidrnetmask(item))])
error_message = "Each item of this list must be in a valid CIDR block format. For example: [\"10.106.108.0/25\"]"
}
default = []
}
variable "allowed_hub_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing hub access"
validation {
condition = alltrue([for item in var.allowed_hub_cidrs : can(cidrnetmask(item))])
error_message = "Each item of this list must be in a valid CIDR block format. For example: [\"10.106.108.0/25\"]"
}
default = []
}
variable "allowed_all_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing access to all relevant protocols (E.g vpc cidr range)"
validation {
condition = alltrue([for item in var.allowed_all_cidrs : can(cidrnetmask(item))])
error_message = "Each item of this list must be in a valid CIDR block format. For example: [\"10.106.108.0/25\"]"
}
default = []
}
variable "attach_persistent_public_ip" {
type = bool
default = true
description = "Create and attach an Elastic public IP for the instance. If false, a dynamic public IP is used. Relevant only if the DRA Admin is in a public subnet (ignored if in a private subnet). Currently, due to a DRA limitation, must only be true."
}
variable "ebs" {
type = object({
volume_size = number
volume_type = string
})
description = "Compute instance volume attributes for the DRA Admin"
default = {
volume_size = 260
volume_type = "gp3"
}
}
variable "instance_profile_name" {
type = string
default = null
description = "Instance profile to assign to the instance. Keep empty if you wish to create a new IAM role and profile"
}
variable "send_usage_statistics" {
type = bool
default = true
description = "Set to true to send usage statistics."
}