forked from PowerDataHub/terraform-aws-airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
316 lines (262 loc) · 8.67 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
# ---------------------------------------------------------------------------------------------------------------------
# ENVIRONMENT VARIABLES
# Define these secrets as environment variables
# ---------------------------------------------------------------------------------------------------------------------
# AWS_ACCESS_KEY_ID
# AWS_SECRET_ACCESS_KEY
# AWS_DEFAULT_REGION
###########
# Globals #
###########
variable "ami" {
description = "Default is `Ubuntu Server 18.04 LTS (HVM), SSD Volume Type.`"
type = "string"
default = "ami-0a313d6098716f372"
}
variable "cluster_name" {
description = "The name of the Airflow cluster (e.g. airflow-xyz). This variable is used to namespace all resources created by this module."
type = "string"
}
variable "cluster_stage" {
description = "The stage of the Airflow cluster (e.g. prod)."
type = "string"
default = "dev"
}
variable "aws_region" {
description = "AWS Region"
type = "string"
default = "us-east-1"
}
variable "key_name" {
description = "AWS KeyPair name."
type = "string"
}
variable "private_key_path" {
description = "Enter the path to the SSH Private Key to run provisioner."
default = "~/.ssh/id_rsa"
}
variable "public_key_path" {
description = "Enter the path to the SSH Public Key to add to AWS."
default = "~/.ssh/id_rsa.pub"
}
variable "vpc_id" {
description = "The ID of the VPC in which the nodes will be deployed. Uses default VPC if not supplied."
type = "string"
default = ""
}
variable "fernet_key" {
description = "Key for encrypting data in the database - see Airflow docs."
type = "string"
}
variable "custom_requirements" {
description = "Path to custom requirements.txt."
type = "string"
default = ""
}
variable "custom_env" {
description = "Path to custom airflow environments variables."
type = "string"
default = ""
}
variable "load_example_dags" {
description = "Load the example DAGs distributed with Airflow. Useful if deploying a stack for demonstrating a few topologies, operators and scheduling strategies."
type = "string"
default = false
}
variable "load_default_conns" {
description = "Load the default connections initialized by Airflow. Most consider these unnecessary, which is why the default is to not load them."
type = "string"
default = false
}
variable "rbac" {
description = "Enable support for Role-Based Access Control (RBAC)."
type = "string"
default = false
}
variable "admin_name" {
description = "Admin name. Only If RBAC is enabled, this user will be created in the first run only."
type = "string"
default = "John"
}
variable "admin_lastname" {
description = "Admin lastname. Only If RBAC is enabled, this user will be created in the first run only."
type = "string"
default = "Doe"
}
variable "admin_email" {
description = "Admin email. Only If RBAC is enabled, this user will be created in the first run only."
type = "string"
default = "[email protected]"
}
variable "admin_username" {
description = "Admin username used to authenticate. Only If RBAC is enabled, this user will be created in the first run only."
type = "string"
default = "admin"
}
variable "admin_password" {
description = "Admin password. Only If RBAC is enabled."
type = "string"
default = false
}
######
# S3 #
######
variable "s3_bucket_name" {
description = "S3 Bucket to save airflow logs."
type = "string"
default = ""
}
#######
# EC2 #
#######
variable "azs" {
description = "Run the EC2 Instances in these Availability Zones"
type = "map"
default = {
"1" = "us-east-1a",
"2" = "us-east-1b",
"3" = "us-east-1c",
"4" = "us-east-1d"
}
}
variable "webserver_instance_type" {
description = "Instance type for the Airflow Webserver."
type = "string"
default = "t3.micro"
}
variable "webserver_port" {
description = "The port Airflow webserver will be listening. Ports below 1024 can be opened only with root privileges and the airflow process does not run as such."
type = "string"
default = "8080"
}
variable "scheduler_instance_type" {
description = "Instance type for the Airflow Scheduler."
type = "string"
default = "t3.micro"
}
variable "worker_instance_type" {
description = "Instance type for the Celery Worker."
type = "string"
default = "t3.small"
}
variable "worker_instance_count" {
description = "Number of worker instances to create."
type = "string"
default = 1
}
variable "spot_price" {
description = "The maximum hourly price to pay for EC2 Spot Instances."
default = ""
}
variable "root_volume_ebs_optimized" {
description = "If true, the launched EC2 instance will be EBS-optimized."
type = "string"
default = false
}
variable "root_volume_type" {
description = "The type of volume. Must be one of: standard, gp2, or io1."
type = "string"
default = "standard"
}
variable "root_volume_size" {
description = "The size, in GB, of the root EBS volume."
type = "string"
default = 35
}
variable "root_volume_delete_on_termination" {
description = "Whether the volume should be destroyed on instance termination."
default = true
}
############
# DATABASE #
############
variable "db_instance_type" {
description = "Instance type for PostgreSQL database"
type = "string"
default = "db.t2.micro"
}
variable "db_username" {
description = "PostgreSQL username."
default = "airflow"
}
variable "db_dbname" {
description = "PostgreSQL database name."
default = "airflow"
}
variable "db_password" {
description = "PostgreSQL password."
}
variable "db_allocated_storage" {
description = "Dabatase disk size."
type = "string"
default = 20
}
#------------------------------------------------------------
# Data sources
#------------------------------------------------------------
data "aws_vpc" "default" {
default = "${var.vpc_id == "" ? true : false}"
id = "${var.vpc_id}"
}
data "aws_subnet_ids" "selected" {
vpc_id = "${data.aws_vpc.default.id}"
}
data "aws_security_group" "default" {
vpc_id = "${data.aws_vpc.default.id}"
name = "default"
}
data "template_file" "airflow_service" {
template = "${file("${path.module}/files/airflow.service")}"
}
data "template_file" "custom_env" {
template = "${file(coalesce(var.custom_env, "${path.module}/.env.custom.airflow"))}"
}
data "template_file" "custom_requirements" {
template = "${file(coalesce(var.custom_requirements, "${path.module}/requirements.txt"))}"
}
data "template_file" "airflow_environment" {
template = "${file("${path.module}/files/.env.airflow")}"
vars = {
AWS_REGION = "${var.aws_region}"
FERNET_KEY = "${var.fernet_key}"
LOAD_EXAMPLE_DAGS = "${var.load_example_dags}"
LOAD_DEFAULT_CONNS = "${var.load_default_conns}"
RBAC = "${var.rbac}"
ADMIN_NAME = "${var.admin_name}"
ADMIN_LASTNAME = "${var.admin_lastname}"
ADMIN_EMAIL = "${var.admin_email}"
ADMIN_USERNAME = "${var.admin_username}"
ADMIN_PASSWORD = "${var.admin_password}"
DB_USERNAME = "${var.db_username}"
DB_PASSWORD = "${var.db_password}"
DB_ENDPOINT = "${aws_db_instance.airflow_database.endpoint}"
DB_DBNAME = "${var.db_dbname}"
S3_BUCKET = "${aws_s3_bucket.airflow_logs.id}"
# WEBSERVER_HOST = "${aws_instance.airflow_webserver.public_dns}"
WEBSERVER_PORT = "${var.webserver_port}"
QUEUE_NAME = "${module.airflow_labels.id}-queue"
}
}
data "template_file" "provisioner" {
template = "${file("${path.module}/files/cloud-init.sh")}"
vars = {
AWS_REGION = "${var.aws_region}"
FERNET_KEY = "${var.fernet_key}"
LOAD_EXAMPLE_DAGS = "${var.load_example_dags}"
LOAD_DEFAULT_CONNS = "${var.load_default_conns}"
RBAC = "${var.rbac}"
ADMIN_NAME = "${var.admin_name}"
ADMIN_LASTNAME = "${var.admin_lastname}"
ADMIN_EMAIL = "${var.admin_email}"
ADMIN_USERNAME = "${var.admin_username}"
ADMIN_PASSWORD = "${var.admin_password}"
DB_USERNAME = "${var.db_username}"
DB_PASSWORD = "${var.db_password}"
DB_ENDPOINT = "${aws_db_instance.airflow_database.endpoint}"
DB_DBNAME = "${var.db_dbname}"
S3_BUCKET = "${aws_s3_bucket.airflow_logs.id}"
# WEBSERVER_HOST = "${aws_instance.airflow_webserver.public_dns}"
WEBSERVER_PORT = "${var.webserver_port}"
QUEUE_NAME = "${module.airflow_labels.id}-queue"
}
}