forked from stlrda/Airflow-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars.example
39 lines (33 loc) · 960 Bytes
/
terraform.tfvars.example
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
#METADATA VARIABLES----------------------
cluster_name = ""
tags = {
}
#ADMINISTRATION AND CREDENTIAL VARIABLES------------------
aws_region = ""
aws_profile = ""
aws_profile_access_key = ""
aws_secret_access_key = ""
ec2_keypair_name = ""
public_key_path = ""
private_key_path = ""
admin_email = ""
admin_username = ""
admin_password = ""
fernet_key = ""
#AIRFLOW CONFIG VARIABLES------------------------------
time_zone = ""
load_examples = ""
#EC2 VARIABLES (APPLY TO ALL EC2 INSTANCES UNLESS OTHERWISE SPECIFIED)--------------------------
webserver_instance_type = "t3.micro"
scheduler_instance_type = "t3.micro"
worker_instance_type = "t3.small"
number_of_workers = 1
#DB VARIABLES------------------------------------
db_instance_type = "db.t2.micro"
db_dbname = "airflow"
db_username = ""
db_password = ""
#GIT VARIABLES--------------------------------------
dag_git_repository_url=""
dag_git_repository_directory=""
dag_git_repository_branch=""