mwaa

MWAA

Analytics & IoTAWS
General

General information about the service.

Description

Amazon Managed Workflows for Apache Airflow orchestrates data pipelines.

Service Namespace

AWS::MWAA::Environment

ARN Pattern

arn:aws:airflow:{region}:{account}:environment/{name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

mwaa-

Length

1-80

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_mwaa_environment" "main" {
2 name = "mwaa-${var.environment}"
3 airflow_version = "2.5.1"
4 environment_class = "mw1.small"
5 execution_role_arn = aws_iam_role.mwaa.arn
6 source_bucket_arn = aws_s3_bucket.dags.arn
7 dag_s3_path = "dags/"
8 network_configuration {
9 subnet_ids = var.subnet_ids
10 security_group_ids = [var.security_group_id]
11 }
12}
Utilities

Utilities to support app deployment or configuration.