You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evaluation of include_tasks occurs when the tasks are encountered whereas import_tasks is evaluated statically, and prior to evaluating any variables. Consequently, if you're dependent of variables during the import then it may fail, i.e. doing something like this will fail: -
As a general policy ... use include_tasks unless there's an important reason why import_tasks is being used. And, if using import_tasks add a comment as to why include_tasks is not being used.
The text was updated successfully, but these errors were encountered:
Evaluation of
include_tasks
occurs when the tasks are encountered whereasimport_tasks
is evaluated statically, and prior to evaluating any variables. Consequently, if you're dependent of variables during the import then it may fail, i.e. doing something like this will fail: -As a general policy ... use
include_tasks
unless there's an important reason whyimport_tasks
is being used. And, if usingimport_tasks
add a comment as to whyinclude_tasks
is not being used.The text was updated successfully, but these errors were encountered: