-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
215 lines (185 loc) · 6.98 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
variable "name" {
type = string
default = "imperva-dsf-dra-analytics"
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 "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 "analytics_ssh_password" {
type = string
description = "Password to be used to ssh to the Analytics Server"
validation {
condition = length(var.analytics_ssh_password) >= 7
error_message = "Password must be at least 7 characters long"
}
validation {
condition = can(regex("[A-Z]", var.analytics_ssh_password))
error_message = "Password must contain at least one uppercase letter"
}
validation {
condition = can(regex("[a-z]", var.analytics_ssh_password))
error_message = "Password must contain at least one lowercase letter"
}
validation {
condition = can(regex("\\d", var.analytics_ssh_password))
error_message = "Password must contain at least one digit"
}
validation {
condition = can(regex("[*+=#%^:/~.,\\[\\]_]", var.analytics_ssh_password))
error_message = "Password must contain at least one of the following special characters: *+=#%^:/~.,[]_"
}
}
variable "archiver_user" {
type = string
default = "archiver-user"
description = "User to be used to upload archive files for the Analytics server"
}
variable "dra_version" {
type = string
default = "4.16"
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_server_private_ip" {
type = string
description = "Private IP of the Admin Server"
}
variable "admin_server_public_ip" {
type = string
description = "Public IP of the Admin Server"
}
variable "instance_type" {
type = string
default = "m4.xlarge"
description = "EC2 instance type for the Analytics Server"
}
variable "key_pair" {
type = string
description = "key pair"
}
variable "archiver_password" {
type = string
description = "Password to be used to upload archive files for analysis"
}
variable "subnet_id" {
type = string
description = "Subnet id for the Analytics 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_admin_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing the Admin Server to access the Analytics Server instance"
validation {
condition = alltrue([for item in var.allowed_admin_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_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_agent_gateways_cidrs" {
type = list(string)
description = "List of ingress CIDR patterns allowing agent gateway access for legacy deployment"
validation {
condition = alltrue([for item in var.allowed_agent_gateways_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 "ebs" {
type = object({
volume_size = number
volume_type = string
})
description = "Compute instance volume attributes for the DRA Analytics"
default = {
volume_size = 1010
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."
}