rougail.rougail - Rougail This repository contains the  rougail.rougail  Ansible collection. This family is a namespace Variables The group variables "rougail" - Rougail β–Œ πŸ›ˆ Informations β–Œ  β–Œ  basic  ┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ ┃ Default  ┃ ┃ Access  ┃ ┃ ┃ Variable  ┃ Descripti… ┃ value  ┃ Type  ┃ control  ┃ Validator  ┃ ┑━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━┩ β”‚ variable1 β”‚ A first β”‚ β€’ a β”‚  string    β”‚  standard  β”‚  unique  β”‚ β”‚ β”‚ variable. β”‚ β€’ b β”‚ multiple  β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β€’ c β”‚ mandatory  β”‚ β”‚ β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ variable2 β”‚ A second β”‚ β”‚  choice    β”‚  basic  β”‚ Choices: β”‚ β”‚ β”‚ variable. β”‚ β”‚ mandatory  β”‚ β”‚ the value β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ of the β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ variable β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ "a first β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ variable" β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ (variable… β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ Usage Example Playbook with Rougail Add to your structural file something like: %YAML 1.2  ---  version: 1.1  my_rougail:   type: rougail  ...  Customizing hidden variables in structure file: %YAML 1.2  ---  version: 1.1  my_rougail:   type: rougail  ...  β–Œ πŸ›ˆ Informations β–Œ  β–Œ Do not forget to add Rougail structure file as Rougail types. For example you can add an YAML user data with something like: ---  my_rougail:   variable2: a # A second variable  Add to your Play: ---  - name: Collection | rougail.rougail.install   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: Collection | rougail.rougail.install   hosts: servers   vars:   rougail:   variable2: a # A second variable   ansible.builtin.import_playbook: rougail.rougail.install