Update dags/groupuser/test.py
This commit is contained in:
parent
c24b7350e2
commit
7771ea63f1
@ -27,6 +27,9 @@ with DAG(
|
|||||||
schedule='@once',
|
schedule='@once',
|
||||||
start_date=datetime(2025, 8, 11, tzinfo=KST),
|
start_date=datetime(2025, 8, 11, tzinfo=KST),
|
||||||
catchup=False,
|
catchup=False,
|
||||||
|
access_control={
|
||||||
|
"groupuser": {"can_read", "can_edit"},
|
||||||
|
}
|
||||||
) as dag:
|
) as dag:
|
||||||
t1 = PythonOperator(task_id='task1', python_callable=task1)
|
t1 = PythonOperator(task_id='task1', python_callable=task1)
|
||||||
t2 = PythonOperator(task_id='task2', python_callable=task2)
|
t2 = PythonOperator(task_id='task2', python_callable=task2)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user