rougail.rougail - Rougail This repository contains the  rougail.rougail  Ansible Collection. This family is a namespace Variables The group variable "rougail" - Rougail β–Œ πŸ›ˆ Informations β–Œ  β–Œ  basic  A family β–Œ πŸ›ˆ Informations β–Œ  β–Œ Path: general β–Œ  basic  ┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ ┃ Default  ┃ ┃ Access  ┃ ┃ ┃ Variable  ┃ Descripti… ┃ value  ┃ Type  ┃ control  ┃ Validator  ┃ ┑━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━┩ β”‚ general.i… β”‚ A first β”‚ β”‚  integer  β”‚  basic  β”‚ β€’ int and β”‚ β”‚ β”‚ integer. β”‚ β”‚ mandatory  β”‚ β”‚ int2 must β”‚ β”‚ β”‚ Example: 5 β”‚ β”‚ β”‚ β”‚ be β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ different β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β€’ int and β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ int3 must β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ be β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ different. β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ general.i… β”‚ A second β”‚ 1 β”‚  integer  β”‚  standard  β”‚ β”‚ β”‚ β”‚ integer. β”‚ β”‚ mandatory  β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ Usage Example playbook with Rougail Add to your structural file something like: %YAML 1.2  ---  version: 1.1  my_rougail:   type: rougail  ...  β–Œ πŸ›ˆ Informations β–Œ  β–Œ Do not forget to add Rougail structural file as Rougail types. For example you can add an YAML user data with something like: ---  my_rougail:   general: # A family   int: 5 # A first integer  Add to your play: ---  - name: Rougail   hosts: servers   vars:   rougail: '{{ my_rougail }}'   ansible.builtin.import_playbook: rougail.rougail.install  Example playbook without Rougail β–Œ πŸ›ˆ Informations β–Œ  β–Œ The variables will not be properly validated without Rougail. ---  - name: Rougail   hosts: servers   vars:   rougail:   general: # A family   int: 5 # A first integer   ansible.builtin.import_playbook: rougail.rougail.install