I have a DAG which has 5 parallel task. I don't want to execute them all in one go. I want to pass some flag/value to the task suppose if the flag is set to True it runs and if the flag is set to False it gets skip. Can we do this in Airflow2. The default arguments are very basic one and I have not scheduled the DAG.
My DAG Flow looks something like this
starttask>>5paralleltask>>endtask
And these 5 parallel task I have created using a for loop
Thank you so much in advance