generated from aws-ia/terraform-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 54
/
variables.tf
262 lines (225 loc) · 8.14 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
variable "name" {
description = "(Required) The name of the Apache Airflow MWAA Environment"
type = string
}
variable "private_subnet_ids" {
description = <<-EOD
(Required) The private subnet IDs in which the environment should be created.
MWAA requires two subnets.
EOD
type = list(string)
}
variable "airflow_configuration_options" {
description = "(Optional) The airflow_configuration_options parameter specifies airflow override options."
type = any
default = null
}
variable "airflow_version" {
description = "(Optional) Airflow version of your environment, will be set by default to the latest version that MWAA supports."
type = string
default = null
}
variable "dag_s3_path" {
description = "(Required) The relative path to the DAG folder on your Amazon S3 storage bucket. For example, dags."
type = string
default = "dags"
}
variable "environment_class" {
description = <<-EOD
(Optional) Environment class for the cluster. Possible options are mw1.small, mw1.medium, mw1.large, mw1.xlarge, mw1.2xlarge.
Will be set by default to mw1.small. Please check the AWS Pricing for more information about the environment classes.
EOD
type = string
default = "mw1.small"
validation {
condition = contains(["mw1.small", "mw1.medium", "mw1.large", "mw1.xlarge", "mw1.2xlarge"], var.environment_class)
error_message = "Invalid input, options: \"mw1.small\", \"mw1.medium\", \"mw1.large\", \"mw1.xlarge\", \"mw1.2xlarge\"."
}
}
variable "kms_key" {
description = <<-EOD
(Optional) The Amazon Resource Name (ARN) of your KMS key that you want to use for encryption.
Will be set to the ARN of the managed KMS key aws/airflow by default.
EOD
type = string
default = null
}
variable "logging_configuration" {
description = "(Optional) The Apache Airflow logs which will be send to Amazon CloudWatch Logs."
type = any
default = null
}
variable "max_workers" {
description = <<-EOD
(Optional) The maximum number of workers that can be automatically scaled up.
Value need to be between 1 and 25. Will be 10 by default
EOD
type = number
default = 10
validation {
condition = var.max_workers > 0 && var.max_workers < 26
error_message = "Error: Value need to be between 1 and 25."
}
}
variable "min_workers" {
description = "(Optional) The minimum number of workers that you want to run in your environment. Will be 1 by default."
type = number
default = 1
}
variable "plugins_s3_object_version" {
description = "(Optional) The plugins.zip file version you want to use."
type = string
default = null
}
variable "plugins_s3_path" {
description = "(Optional) The relative path to the plugins.zip file on your Amazon S3 storage bucket. For example, plugins.zip. If a relative path is provided in the request, then plugins_s3_object_version is required."
type = string
default = null
}
variable "requirements_s3_object_version" {
description = "(Optional) The requirements.txt file version you want to use."
type = string
default = null
}
variable "requirements_s3_path" {
description = "(Optional) The relative path to the requirements.txt file on your Amazon S3 storage bucket. For example, requirements.txt. If a relative path is provided in the request, then requirements_s3_object_version is required."
type = string
default = null
}
variable "startup_script_s3_object_version" {
description = "(Optional) The version of the startup shell script you want to use. You must specify the version ID that Amazon S3 assigns to the file every time you update the script."
type = string
default = null
}
variable "startup_script_s3_path" {
description = "(Optional) The relative path to the script hosted in your bucket. The script runs as your environment starts before starting the Apache Airflow process. Use this script to install dependencies, modify configuration options, and set environment variables."
type = string
default = null
}
variable "schedulers" {
description = "(Optional) The number of schedulers that you want to run in your environment."
type = string
default = null
}
variable "webserver_access_mode" {
description = "(Optional) Specifies whether the webserver should be accessible over the internet or via your specified VPC. Possible options: PRIVATE_ONLY (default) and PUBLIC_ONLY"
type = string
default = "PRIVATE_ONLY"
validation {
condition = contains(["PRIVATE_ONLY", "PUBLIC_ONLY"], var.webserver_access_mode)
error_message = "Invalid input, options: \"PRIVATE_ONLY\", \"PUBLIC_ONLY\"."
}
}
variable "weekly_maintenance_window_start" {
description = "(Optional) Specifies the start date for the weekly maintenance window"
type = string
default = null
}
variable "tags" {
description = "(Optional) A map of resource tags to associate with the resource"
type = map(string)
default = {}
}
#----------------------------------------------------------------
# MWAA IAM Role
#----------------------------------------------------------------
variable "create_iam_role" {
description = "Create IAM role for MWAA"
type = bool
default = true
}
variable "iam_role_name" {
description = "IAM Role Name to be created if execution_role_arn is null"
type = string
default = null
}
variable "additional_principal_arns" {
description = "List of additional AWS principal ARNs"
type = list(string)
default = []
}
variable "iam_role_permissions_boundary" {
description = "IAM role Permission boundary"
type = string
default = null
}
variable "force_detach_policies" {
description = "IAM role Force detach policies"
type = bool
default = false
}
variable "iam_role_additional_policies" {
description = "Additional policies to be added to the IAM role"
type = map(string)
default = {}
}
variable "iam_role_path" {
description = "IAM role path"
type = string
default = "/"
}
variable "execution_role_arn" {
description = <<-EOD
(Required) The Amazon Resource Name (ARN) of the task execution role that the Amazon MWAA and its environment can assume
Mandatory if `create_iam_role=false`
EOD
type = string
default = null
}
#----------------------------------------------------------------
# MWAA S3 Bucket
#----------------------------------------------------------------
variable "create_s3_bucket" {
description = "Create new S3 bucket for MWAA. "
type = string
default = true
}
variable "source_bucket_name" {
description = <<-EOD
New bucket will be created with the given name for MWAA when create_s3_bucket=true.
If set to null, then the default bucket name prefix will be set, irrespective of the value of `var.use_source_bucket_name_as_prefix`
EOD
type = string
default = null
}
variable "use_source_bucket_name_as_prefix" {
description = <<-EOD
Whether or not to use the `var.source_bucket_name` as the S3 bucket name prefix
EOD
type = bool
default = true
}
variable "source_bucket_arn" {
description = "(Required) The Amazon Resource Name (ARN) of your Amazon S3 storage bucket. For example, arn:aws:s3:::airflow-mybucketname"
type = string
default = null
}
#----------------------------------------------------------------
# MWAA Security groups
#----------------------------------------------------------------
variable "create_security_group" {
description = "Create security group for MWAA"
type = bool
default = true
}
variable "security_group_ids" {
description = "Security group IDs for MWAA"
type = list(string)
default = []
}
variable "vpc_id" {
description = <<-EOD
(Required) VPC ID to deploy the MWAA Environment.
Mandatory if `create_security_group=true`
EOD
type = string
default = ""
}
variable "source_cidr" {
description = <<-EOD
(Required) Source CIDR block which will be allowed on MWAA SG to access Airflow UI
Used only if `create_security_group=true`
EOD
type = list(string)
default = []
}