Hello all!
I'm writing a number of Powershell Ansible modules and facing an issue.
Say you have a module A and a module B and some functions defined in include.ps1.
I would like module A and B to include include.ps1.
My understanding is Ansible will transfer only module A. Which means a regular include will fail because include.ps1 won't be on the remote.
Is it possible to make Ansible to include "include.ps1" in the module A before transfering it to the remote?
Would be super convenient. At the moment I have to copy/paste include.ps1 in module A, B and so on.
As you can imagine this leads to a number of problems :-)
Thanks!