Other than the modules themselves, not really, they use
https://github.com/ansible/ansible/blob/devel/lib/ansible/module_utils/connection.py
to establish a connection via the 'ansible-conneciton' tool (which is
what actually uses the connection plugin), which exposes a socket to
the module, the mod
Brian, thanks for the info.
As you mention, I found the netcommon collection
(https://docs.ansible.com/ansible/latest/collections/ansible/netcommon/index.html)
I understand the idea, but I don't understand how to use the connection
plugin.
(https://docs.ansible.com/ansible/latest/collections/a
The cliconf/network_cli plugins do this, they handle the connection
internally in the module and use ssh/paramiko/libssh to interact with
the target
--
--
Brian Coca
--
You received this message because you are subscribed to the Google Groups
"Ansible Development" group.
To unsubscrib
I'm working on an automation to create/delete users on storage devices.
I have been only provided with the commands that the storage admin use and
users that can ssh to the storage devices.
My first attempt was to create a normal playbook that connects to the
storage device and run the commands.