rougail.rougail - Rougail This repository contains the  rougail.rougail  Ansible Collection. This family is a namespace Variables The group variable "rougail" - Rougail โ–Œ ๐Ÿ›ˆ Informations โ–Œ  โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Type  โ”ƒ Access control  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ empty โ”‚  string   mandatory  โ”‚  basic  โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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:   empty: string1  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:   empty: string1   ansible.builtin.import_playbook: rougail.rougail.install