Ansible Module Part2
Here is my first post about modules. In that post I built what I’d call a legacy module, something to include in a basic playbook to prove a concept worked. Ansible has moved on and is now pushing content collections. This post will detail moving my module to a content collection. Content Collections Ansible content collections, as I understand them, are a way to group custom functionality into something that is unique. The problem with modules is the names could overlap, with content collections they cannot. Content collections also add roles and plugins, so you can collapse a bunch of different ansible functionality into one area to include. ...