v2.0.74 - AWS Airflow
- Additional input parameters: #427
variable "iam_extra_policies" {
description = "List of additional policies to create and attach to the IAM role"
type = list(object({
name_prefix = string
policy_json = string
}))
default = []
}
variable "sg_extra_ids" {
description = "List of additional sg to create and attach to Airflow"
type = list(string)
default = []
}
variable "requirements_s3_path" {
description = "The S3 path for the MWAA requirements file."
type = string
default = ""
}