2- Ansible Create a Role / initialisation with ansible-galaxy

cd /etc/ansible

ansible-galaxy init vsrx

cd vsrx


tree vrsx

├── defaults
│      └── main.yml   >>> define the variables
├── files  >> eg: file to be transfered
├── handlers
│      └── main.yml
├── meta       >>>>> dependencies
│       └── main.yml
├── README.md
── tasks
│      └── main.yml  >>>>>> main ansible script
├── templates   eg: jinja2 templates ( + vars ) >>>> config files
├── tests
│      ├── inventory
│      └── test.yml
└── vars
       └── main.yml