rougail.rougail - Rougail This repository contains the  rougail.rougail  Ansible Collection. This family is a namespace Variables The group variable "rougail" - Rougail β–Œ πŸ›ˆ Informations β–Œ  β–Œ  standard  ┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ ┃ Default  ┃ ┃ Access  ┃ ┃ ┃ Variable  ┃ Descripti… ┃ value  ┃ Type  ┃ control  ┃ Validator  ┃ ┑━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━┩ β”‚ var1 β”‚ The β”‚ β€’ val1 β”‚  string    β”‚  standard  β”‚  unique  β”‚ β”‚ β”‚ variable. β”‚ β€’ val2 β”‚ multiple  β”‚ β”‚ Needs β”‚ β”‚ β”‚ β”‚ β€’ val3 β”‚ mandatory  β”‚ β”‚ exactly 3 β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ values. β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ var2 β”‚ The β”‚ β€’ val4 β”‚  string    β”‚  standard  β”‚  unique  β”‚ β”‚ β”‚ variable. β”‚ β€’ val5 β”‚ multiple  β”‚ β”‚ β€’ needs a β”‚ β”‚ β”‚ β”‚ β”‚ mandatory  β”‚ β”‚ minimum of β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ 1 values β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β€’ needs a β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ maximum of β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ 4 values. β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ 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. 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: {}   ansible.builtin.import_playbook: rougail.rougail.install