-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvariables.tf
109 lines (82 loc) · 2.1 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
variable network_name {
default = "nifi-network"
}
variable nifi-ca-hostname {
default = "nifi-ca"
}
variable zookeeper-hostname {
default = "zookeeper"
}
variable registry-hostname {
default = "nifi-registry"
}
variable nifi-hostname {
default = "nifi"
}
variable nifi-basedir {
default = "/opt/nifi"
}
variable nifi-machine-type {
default = "e2-highcpu-4"
}
variable nifi-ca-machine-type {
default = "e2-micro"
}
variable zookeeper-machine-type {
default = "e2-micro"
}
variable registry-machine-type {
default = "e2-micro"
}
variable zookeeper_version {
default = "3.9.3"
}
variable nifi_version {
default = "2.0.0"
}
variable nifiregistry_version {
default = "2.0.0"
}
variable nifi_toolkit_version {
default = "1.28.0"
}
variable "region" {
default = "europe-west1"
}
variable "zone" {
default = "europe-west1-d"
}
// ---------------------------------
variable "project" {
description = "GCP Project ID"
}
variable nifi-admin {
description = "Google mail address for the user that will be the initial admin in NiFi"
}
variable san {
description = "FQDN of the DNS mapping that will be used to access NiFi. Example: nifi.example.com"
}
variable san-registry {
description = "FQDN of the DNS mapping that will be used to access NiFi Registry. Example: nifiregistry.example.com"
}
variable proxyhost {
description = "FQDN:port that will be used to access NiFi. Example: nifi.example.com:8443"
}
variable ca_token {
description = "The token to use to prevent MITM between the NiFi CA client and the NiFi CA server (must be at least 16 bytes long)"
}
variable oauth_clientid {
description = "OAuth Client ID"
}
variable oauth_secret {
description = "OAuth Client secret"
}
variable "instance_count" {
description = "Number of NiFi instances"
}
variable nifi_bucket {
description = "GCS path to the bucket containing the binaries (ex: gs://nifi_bin)"
}
variable sensitivepropskey {
description = "Key that will be used for encrypting the sensitive properties in the flow definition (ex: ThisIsAVeryBadPass3word)"
}