This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
78 lines (62 loc) · 1.75 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
variable "gcp_project" {
description = "The GCP project identifier"
}
variable "gcp_region" {
description = "The GCP region"
}
variable "gcp_zone" {
description = "The GCP zone"
}
variable "project_name" {
description = "The name of the project"
}
variable "domain_name" {
description = "The wildcard domain name used by the project for example lab.example.com creates velociraptor.lab.example.com and timesketch.lab.example.com"
}
variable "gcp_velociraptor_machine_type" {
description = "The machine type used by Velociraptor"
default = "e2-small"
}
variable "velociraptor_version" {
description = "The used version of Velociraptor"
default = "0.6.3"
}
variable "velociraptor_file_store_size" {
description = "The capacity of the Velociraptor file store in GiB"
default = "2560"
}
variable "timesketch_version" {
description = "The Timesketch version"
default = "master"
}
variable "timesketch_file_store_size" {
description = "The capacity of the Timesketch file store in GiB"
default = "2560"
}
variable "timesketch_web_target_size" {
description = ""
default = 1
}
variable "timesketch_worker_target_size" {
description = ""
default = 1
}
variable "timesketch_web_internal" {
description = ""
default = "10.0.2.10"
}
variable "elastic_cloud_api_key" {
description = "The API key used by the Timesketch module"
}
variable "gcp_timesketch_machine_type_web" {
description = "The machine type used by Timesketch web"
default = "e2-small"
}
variable "gcp_timesketch_machine_type_worker" {
description = "The machine type used by Timesketch workers"
default = "e2-small"
}
variable "gcp_plaso_machine_type" {
description = "The machine type used by Plaso"
default = "e2-small"
}