rougail.rougail - Rougail This repository contains the  rougail.rougail  Ansible Collection. This family is a namespace Variables The group variable "rougail" - Rougail β–Œ πŸ›ˆ Informations β–Œ  β–Œ  basic  ┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┓ ┃ ┃ ┃ Default  ┃ ┃ Access  ┃ ┃ ┃ Variable  ┃ Descripti… ┃ value  ┃ Type  ┃ control  ┃ Validator  ┃ ┑━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━┩ β”‚ var1 β”‚ A first β”‚ β”‚  domainna… β”‚  basic  β”‚  unique  β”‚ β”‚ β”‚ variable. β”‚ β”‚ multiple  β”‚ β”‚ β€’ type β”‚ β”‚ β”‚ β”‚ β”‚ mandatory  β”‚ β”‚ domainname β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β€’ the β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ domain β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ name can β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ be an IP. β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ var2 β”‚ A second β”‚ the value β”‚  domainna… β”‚  standard  β”‚  unique  β”‚ β”‚ β”‚ variable. β”‚ of the β”‚ multiple  β”‚ β”‚ Type β”‚ β”‚ β”‚ β”‚ variable β”‚ mandatory  β”‚ β”‚ domainnam… β”‚ β”‚ β”‚ β”‚ "a first β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ variable" β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ (var1). β”‚ β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ 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:   var1: # A first variable   - domain1.lan   - domain2.lan  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:   var1: # A first variable   - domain1.lan   - domain2.lan   ansible.builtin.import_playbook: rougail.rougail.install