-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
62 lines (52 loc) · 1.22 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
# MWAA input variables
variable "aws_access_key" {
sensitive = true
}
variable "aws_secret_key" {
sensitive = true
}
variable "aws_session_token" {
default = ""
sensitive = true
}
variable "region" {
type = string
description = "AWS region where resources will be deployed."
}
variable "prefix" {
type = string
description = "A prefix to use when naming resources."
}
variable "vpc_id" {
type = string
description = "VPC ID of the AWS VPC."
}
variable "private_subnet_ids" {
type = list(string)
description = "Private subnet ids"
}
variable "airflow_version" {
type = string
description = "Airflow version"
default = "2.0.2"
}
variable "environment_class" {
type = string
description = "The environment class of the Airflow cluster."
default = "mw1.small"
}
variable "min_workers" {
type = number
description = "Minimum number of Airflow workers."
default = 1
}
variable "max_workers" {
type = number
description = "Maximum number of Airflow workers."
default = 2
}
variable "additional_tags" {
type = map(string)
description = "Additional resource tags. Do not include the Name key."
default = {}
}