-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvariables.tf
562 lines (449 loc) · 19.4 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
# --------------------------------------------------------------------------------------------------
# REQUIRED PARAMETERS
# You must provide a value for each of these parameters.
# --------------------------------------------------------------------------------------------------
variable "vpc_id" {
description = "ID of the VPC to launch the module in"
}
variable "base_domain" {
description = "Base domain for all services"
type = string
}
variable "nomad_clients_ami_id" {
description = "AMI ID for Nomad clients"
}
variable "nomad_servers_ami_id" {
description = "AMI ID for Nomad servers"
}
variable "consul_ami_id" {
description = "AMI ID for Consul servers"
}
variable "vault_ami_id" {
description = "AMI ID for Vault servers"
}
variable "consul_route53_subdomain" {
description = "Subdomain name of Consul API. This overrides consul_api_domain as the name of Route53 record resource when given a value."
default = ""
}
variable "nomad_route53_subdomain" {
description = "Subdomain name of Nomad API. This overrides nomad_api_domain as the name of Route53 record resource when given a value."
default = ""
}
variable "vault_route53_subdomain" {
description = "Subdomain name of Vault API. This overrides vault_api_domain as the name of Route53 record resource when given a value."
default = ""
}
variable "consul_subnets" {
description = "List of subnets to launch Connsul servers in"
type = list(string)
}
variable "nomad_server_subnets" {
description = "List of subnets to launch Nomad servers in"
type = list(string)
}
variable "nomad_client_subnets" {
description = "List of subnets to launch Nomad clients in"
type = list(string)
}
variable "vault_subnets" {
description = "List of subnets to launch Vault servers in"
type = list(string)
}
variable "internal_lb_subnets" {
description = "List of subnets to deploy the internal LB to"
type = list(string)
}
variable "consul_allowed_inbound_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow connections to Consul servers for API usage"
type = list(string)
}
variable "consul_allowed_inbound_security_group_ids" {
description = "A list of security group IDs that will be allowed to connect to Consul"
type = list(string)
}
variable "consul_allowed_inbound_security_group_count" {
description = "The number of entries in var.allowed_inbound_security_group_ids. Ideally, this value could be computed dynamically, but we pass this variable to a Terraform resource's 'count' property and Terraform requires that 'count' be computed with literals or data sources only."
type = number
}
variable "nomad_servers_allowed_inbound_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow connections to Nomad Servers servers for API usage"
type = list(string)
}
variable "nomad_clients_allowed_inbound_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow connections to Nomad Clients servers for API usage"
type = list(string)
}
variable "vault_allowed_inbound_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow connections to Vault servers for API usage"
type = list(string)
}
variable "vault_tls_key_policy_arn" {
description = "ARN of the IAM policy to allow the Vault EC2 instances to decrypt the encrypted TLS private key baked into the AMI. See README for more information."
}
variable "route53_zone" {
description = "Zone for Route 53 records"
}
variable "add_private_route53_zone" {
description = "Setting to true adds a new Route53 zone under the same domain name as `route53_zone`, but in a private zone, on top of the default public one"
default = false
}
variable "enable_http" {
description = "Set to true to enable HTTP listener that redirects to HTTPS. Defaults to true"
default = true
}
variable "internal_lb_incoming_cidr" {
description = "A list of CIDR-formatted IP address ranges from which the internal Load balancer is allowed to listen to"
type = list(string)
}
variable "internal_lb_drop_invalid_header_fields" {
description = "Set to true for internal load balancer to drop invalid header fields"
default = true
}
# --------------------------------------------------------------------------------------------------
# Domain name variables
# --------------------------------------------------------------------------------------------------
variable "internal_lb_certificate_arn" {
description = "ARN of the certificate to use for the internal LB"
}
variable "nomad_api_domain" {
description = "Domain to access Nomad REST API"
}
variable "consul_api_domain" {
description = "Domain to access Consul HTTP API"
}
variable "vault_api_domain" {
description = "Domain to access Vault HTTP API"
}
# --------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# --------------------------------------------------------------------------------------------------
variable "tags" {
description = "A map of tags to add to all resources"
default = {
Terraform = "true"
Environment = "development"
}
}
variable "ssh_key_name" {
description = "The name of an EC2 Key Pair that can be used to SSH to the EC2 Instances in this cluster. Set to an empty string to not associate a Key Pair."
default = ""
}
variable "allowed_ssh_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow SSH connections"
type = list(string)
default = []
}
variable "associate_public_ip_address" {
description = "If set to true, associate a public IP address with each EC2 Instance in the cluster."
default = true
}
variable "nomad_cluster_name" {
description = "The name of the Nomad cluster. Only used if `nomad_server_cluster_name` or `nomad_client_cluster_name` is unused. `-server` is appended for server cluster and `-client` is append for client cluster"
default = "nomad"
}
variable "nomad_server_cluster_name" {
description = "Overrides `nomad_cluster_name` if specified. The name of the Nomad server cluster."
type = string
default = null
}
variable "nomad_client_cluster_name" {
description = "Overrides `nomad_cluster_name` if specified. The name of the Nomad client cluster."
type = string
default = null
}
variable "nomad_server_instance_type" {
description = "Type of instances to deploy Nomad servers to"
default = "t2.medium"
}
variable "nomad_client_instance_type" {
description = "Type of instances to deploy Nomad servers to"
default = "t2.medium"
}
variable "nomad_servers_num" {
description = "The number of Nomad server nodes to deploy. We strongly recommend using 3 or 5."
default = 3
}
variable "nomad_server_termination_policies" {
description = "A list of policies to decide how the instances in the auto scale group should be terminated. The allowed values are OldestInstance, NewestInstance, OldestLaunchConfiguration, ClosestToNextInstanceHour, Default."
default = "NewestInstance"
}
variable "nomad_server_allowed_inbound_security_group_ids" {
description = "A list of security group IDs that will be allowed to connect to Nomad Server"
type = list(string)
default = []
}
variable "nomad_client_termination_policies" {
description = "A list of policies to decide how the instances in the auto scale group should be terminated. The allowed values are OldestInstance, NewestInstance, OldestLaunchConfiguration, ClosestToNextInstanceHour, Default."
default = "Default"
}
variable "nomad_client_allowed_inbound_security_group_ids" {
description = "A list of security group IDs that will be allowed to connect to Nomad Clients"
type = list(string)
default = []
}
variable "nomad_clients_min" {
description = "The minimum number of Nomad client nodes to deploy."
default = 3
}
variable "nomad_clients_desired" {
description = "The desired number of Nomad client nodes to deploy."
default = 6
}
variable "nomad_clients_max" {
description = "The max number of Nomad client nodes to deploy."
default = 8
}
variable "nomad_clients_dynamic_ports_inbound_cidr_blocks" {
description = "A list of CIDR-formatted IP address ranges from which the services hosted on Nomad clients on ports 20000 to 32000 will accept connections from."
type = list(string)
}
variable "nomad_servers_root_volume_type" {
description = "The type of volume. Must be one of: standard, gp2, or io1."
default = "gp2"
}
variable "nomad_servers_root_volume_size" {
description = "The size, in GB, of the root EBS volume."
default = 50
}
variable "nomad_clients_root_volume_type" {
description = "The type of volume. Must be one of: standard, gp2, or io1."
default = "gp2"
}
variable "nomad_clients_root_volume_size" {
description = "The size, in GB, of the root EBS volume."
default = 50
}
variable "nomad_servers_user_data" {
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
# The default is at user_data/user-data-nomad-server.sh
description = "The user data for the Nomad servers EC2 instances. If set to empty, the default template will be used"
default = ""
}
variable "nomad_clients_docker_privileged" {
description = "Flag to enable privileged mode for Docker driver on Nomad client"
default = false
}
variable "nomad_clients_docker_volumes_mounting" {
description = "Flag to enable volume mounting for Docker driver on Nomad client"
default = false
}
variable "nomad_clients_user_data" {
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
# The default is at user_data/user-data-nomad-client.sh
description = "The user data for the Nomad clients EC2 instances. If set to empty, the default template will be used"
default = ""
}
variable "consul_cluster_name" {
description = "Name of the Consul cluster to deploy"
default = "consul"
}
variable "consul_cluster_size" {
description = "The number of Consul server nodes to deploy. We strongly recommend using 3 or 5."
default = 3
}
variable "consul_termination_policies" {
description = "A list of policies to decide how the instances in the auto scale group should be terminated. The allowed values are OldestInstance, NewestInstance, OldestLaunchConfiguration, ClosestToNextInstanceHour, Default."
default = "NewestInstance"
}
variable "client_node_class" {
description = "Nomad Client Node Class name for cluster identification"
default = "nomad-client"
}
variable "cluster_tag_key" {
description = "The tag the Consul EC2 Instances will look for to automatically discover each other and form a cluster."
default = "consul-servers"
}
variable "consul_instance_type" {
description = "Type of instances to deploy Consul servers and clients to"
default = "t2.medium"
}
variable "consul_root_volume_type" {
description = "The type of volume. Must be one of: standard, gp2, or io1."
default = "gp2"
}
variable "consul_root_volume_size" {
description = "The size, in GB, of the root EBS volume."
default = 50
}
variable "consul_user_data" {
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
# The default is at user_data/user-data-consul-server.sh
description = "The user data for the Consul servers EC2 instances. If set to empty, the default template will be used"
default = ""
}
variable "vault_cluster_name" {
description = "The name of the Vault cluster (e.g. vault-stage). This variable is used to namespace all resources created by this module."
default = "vault"
}
variable "vault_cluster_size" {
description = "The number of nodes to have in the cluster. We strongly recommend setting this to 3 or 5."
default = 3
}
variable "vault_termination_policies" {
description = "A list of policies to decide how the instances in the auto scale group should be terminated. The allowed values are OldestInstance, NewestInstance, OldestLaunchConfiguration, ClosestToNextInstanceHour, Default."
default = "NewestInstance"
}
variable "vault_allowed_inbound_security_group_ids" {
description = "A list of security group IDs that will be allowed to connect to Vault"
type = list(string)
default = []
}
variable "vault_allowed_inbound_security_group_count" {
description = <<EOF
The number of entries in var.allowed_inbound_security_group_ids.
Ideally, this value could be computed dynamically,
but we pass this variable to a Terraform resource's 'count' property and
Terraform requires that 'count' be computed with literals or data sources only.
EOF
default = 0
}
variable "vault_instance_type" {
description = "The type of EC2 Instances to run for each node in the cluster (e.g. t2.micro)."
default = "t2.medium"
}
variable "vault_root_volume_type" {
description = "The type of volume. Must be one of: standard, gp2, or io1."
default = "gp2"
}
variable "vault_root_volume_size" {
description = "The size, in GB, of the root EBS volume."
default = 50
}
variable "vault_enable_s3_backend" {
description = "Whether to configure an S3 storage backend for Vault in addition to Consul."
default = false
}
variable "vault_s3_bucket_name" {
description = "The name of the S3 bucket to create and use as a storage backend for Vault. Only used if 'vault_enable_s3_backend' is set to true."
default = ""
}
variable "vault_enable_auto_unseal" {
description = "Enable auto unseal of the Vault cluster"
default = false
}
variable "vault_auto_unseal_kms_key_arn" {
description = "The ARN of the KMS key used for unsealing the Vault cluster"
default = ""
}
variable "vault_auto_usneal_kms_key_region" {
description = "The AWS region where the encryption key lives. If unset, defaults to the current region"
default = ""
}
variable "vault_auto_unseal_kms_endpoint" {
description = "A custom VPC endpoint for Vault to use for KMS as part of auto-unseal"
default = ""
}
variable "vault_user_data" {
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
# The default is at user_data/user-data-consul-server.sh
description = "The user data for the Vault servers EC2 instances. If set to empty, the default template will be used"
default = ""
}
# --------------------------------------------------------------------------------------------------
# Internal LB Variables
# --------------------------------------------------------------------------------------------------
variable "internal_lb_name" {
description = "Name of the internal load balancer"
default = "internal"
}
variable "nomad_server_lb_deregistration_delay" {
description = "The time to wait for in-flight requests to complete while deregistering a target. During this time, the state of the target is draining."
default = 30
}
variable "nomad_server_lb_healthy_threshold" {
description = "The number of consecutive health checks successes required before considering an unhealthy target healthy (2-10)."
default = 2
}
variable "nomad_server_lb_timeout" {
description = "The amount of time, in seconds, during which no response means a failed health check (2-60 seconds)."
default = 5
}
variable "nomad_server_lb_unhealthy_threshold" {
description = "The number of consecutive health check failures required before considering a target unhealthy (2-10)."
default = 2
}
variable "nomad_server_lb_interval" {
description = "The approximate amount of time, in seconds, between health checks of an individual target. Minimum value 5 seconds, Maximum value 300 seconds."
default = 30
}
variable "consul_lb_deregistration_delay" {
description = "The time to wait for in-flight requests to complete while deregistering a target. During this time, the state of the target is draining."
default = 30
}
variable "consul_lb_healthy_threshold" {
description = "The number of consecutive health checks successes required before considering an unhealthy target healthy (2-10)."
default = 2
}
variable "consul_lb_timeout" {
description = "The amount of time, in seconds, during which no response means a failed health check (2-60 seconds)."
default = 5
}
variable "consul_lb_unhealthy_threshold" {
description = "The number of consecutive health check failures required before considering a target unhealthy (2-10)."
default = 2
}
variable "consul_lb_interval" {
description = "The approximate amount of time, in seconds, between health checks of an individual target. Minimum value 5 seconds, Maximum value 300 seconds."
default = 30
}
variable "consul_additional_security_group_ids" {
description = "A list of additional security group IDs that will be allowed to connect to Consul Servers"
type = list(string)
default = []
}
variable "vault_lb_deregistration_delay" {
description = "The time to wait for in-flight requests to complete while deregistering a target. During this time, the state of the target is draining."
default = 30
}
variable "vault_lb_healthy_threshold" {
description = "The number of consecutive health checks successes required before considering an unhealthy target healthy (2-10)."
default = 2
}
variable "vault_lb_timeout" {
description = "The amount of time, in seconds, during which no response means a failed health check (2-60 seconds)."
default = 5
}
variable "vault_lb_unhealthy_threshold" {
description = "The number of consecutive health check failures required before considering a target unhealthy (2-10)."
default = 2
}
variable "vault_lb_interval" {
description = "The approximate amount of time, in seconds, between health checks of an individual target. Minimum value 5 seconds, Maximum value 300 seconds."
default = 30
}
variable "elb_ssl_policy" {
description = "ELB SSL policy for HTTPs listeners. See https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html"
default = "ELBSecurityPolicy-FS-1-2-Res-2020-10"
}
variable "elb_access_log" {
description = "Log Internal LB access to a S3 bucket"
default = false
}
variable "elb_access_log_bucket" {
description = "S3 bucket to log access to the internal LB to"
}
variable "elb_access_log_prefix" {
description = "Prefix in the S3 bucket to log internal LB access"
default = ""
}
variable "elb_idle_timeout" {
description = "The time in seconds that the connection is allowed to be idle. Consul supports blocking requests that can last up to 600 seconds. Increase this to support that."
default = 660
}
variable "iam_permissions_boundary" {
description = "If set, restricts the created IAM role to the given permissions boundary"
type = string
default = null
}
# --------------------------------------------------------------------------------------------------
# Post Bootstrap Integration Parameters
# These parameters are used in conjunction with the other modules in this repository.
# If you change the values in the other modules, you have to update them too.
# --------------------------------------------------------------------------------------------------
variable "integration_consul_prefix" {
description = <<EOF
The Consul prefix used by the various integration scripts during initial instance boot.
EOF
default = "terraform/"
}