Ansible Task Arguments

Hello Community,

I have crreated my own Module (pattersonsmod) with my own set of arguments, see image. Can someone let me know if the order of arguments is important? In the image the notify argument is at the beginning of the of the set of arguments, however typically notify would be at the end. Does it matter that notify argument is at the beginning instead of being placed at the end of the arguments?

Cheers

Carlton

order does not matter, but indentation does, notify and with_items are TASK keywords not module options, they should be flush with ‘name’ and outside the module options.

Thanks Brian