generated from opszero/terraform-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
46 lines (37 loc) · 1.05 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
variable "name" {
description = "Name of the Airflow"
}
variable "security_group_ids" {
description = "Security group ids"
}
variable "subnet_ids" {
description = "Private subnet ids"
}
variable "bucket_name" {
description = "The bucket name for the dags. If not specified a `<name>-airflow` bucket is created"
default = ""
}
variable "iam_policy_arns" {
description = "The policy arns that are added to the role attached to Airflow"
default = []
}
variable "dags_path" {
description = "The place for dags, requirements.txt, etc."
default = "dags/"
}
variable "tags" {
description = "Tags to add to resources"
default = {}
}
variable "requirements_s3_path" {
description = "The relative path to the requirements.txt file on your Amazon S3 storage bucket"
default = ""
}
variable "plugins_s3_path" {
description = "The relative path to the plugins.zip file on your Amazon S3 storage bucket"
default = ""
}
variable "environment_class" {
description = "Environment class for the cluster"
default = ""
}