mwaa
MWAA
Analytics & IoTAWS
General
General information about the service.
Chat
Powered by AITalk 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 Documentation
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.arn6 source_bucket_arn = aws_s3_bucket.dags.arn7 dag_s3_path = "dags/"8 network_configuration {9 subnet_ids = var.subnet_ids10 security_group_ids = [var.security_group_id]11 }12}
Utilities
Utilities to support app deployment or configuration.