The plugins "airflow-code-editor" or "simple-dag-editor" are designed to edit dag directly in airflow interface.
Sadly they don't work on MWAA because of a "Read-only file system" error.
Is there a way to make them work ?
The plugins "airflow-code-editor" or "simple-dag-editor" are designed to edit dag directly in airflow interface.
Sadly they don't work on MWAA because of a "Read-only file system" error.
Is there a way to make them work ?
With Airflow Code Editor version >= 7.0.0 you can show/edit files on S3.
You have to:
airflow-code-editor
black
fs-s3fs
{
"Effect": "Allow",
"Action": [
"s3:GetObject*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:GetBucket*",
"s3:List*"
],
"Resource": [
"arn:aws:s3:::your_bucket",
"arn:aws:s3:::your_bucket/*"
]
},