feat: better customize vars documentation

This commit is contained in:
egarette@silique.fr 2026-06-21 14:44:13 +02:00
parent 47f0c09564
commit 02ea8d5177
2328 changed files with 16789 additions and 10493 deletions

View file

@ -31,36 +31,35 @@ if AnnotatorDoc:
level = 96
def __init__(self, *args):
super().__init__(*args, force_default_value=True)
return
host_namespace = self.objectspace.rougailconfig["ansible.inventory.host_namespace"]
namespaces = self.objectspace.parents["."]
if not namespaces:
msg = _("no namespace configured")
raise DictConsistencyError(msg, 300, [])
first_namespace = self.objectspace.paths[namespaces[0]]
if first_namespace.name != first_namespace.namespace:
msg = _("no namespace configured")
raise DictConsistencyError(msg, 301, first_namespace.xmlfiles)
if host_namespace not in namespaces:
msg = _('cannot find host namespace "{0}"').format(host_namespace)
raise DictConsistencyError(msg, 302, first_namespace.xmlfiles)
hostnames = f"{host_namespace}.hostnames"
if hostnames not in self.objectspace.parents[host_namespace]:
hosts = self.objectspace.paths[host_namespace]
msg = _('malformated host namespace "{0}", should have the "hostnames" key').format(host_namespace)
raise DictConsistencyError(msg, 303, hosts.xmlfiles)
for hostname in self.objectspace.parents[hostnames]:
hosts = self.objectspace.paths[hostname]
if hostname not in self.objectspace.families:
msg = _('malformated host namespace "{0}", "{1}" is not a family').format(host_namespace, hostname)
raise DictConsistencyError(msg, 304, hosts.xmlfiles)
hosts_name = f"{hostname}.hosts"
if hosts_name in self.objectspace.parents[hostname]:
hosts_obj = self.objectspace.paths[hosts_name]
if hosts_obj.type != "domainname":
msg = _('malformated ansible hosts "{0}", is not a "domainname" variable').format(hosts_name)
raise DictConsistencyError(msg, 305, hosts_obj.xmlfiles)
if hosts_obj.multi is False:
msg = _('malformated ansible hosts "{0}", it must be a multiple variable').format(hosts_name)
raise DictConsistencyError(msg, 306, hosts_obj.xmlfiles)
super().__init__(*args, force_default_value=True, force_display_unknown_optional_variable=True)
# host_namespace = self.objectspace.rougailconfig["ansible.inventory.host_namespace"]
# namespaces = self.objectspace.parents["."]
# if not namespaces:
# msg = _("no namespace configured")
# raise DictConsistencyError(msg, 300, [])
# first_namespace = self.objectspace.paths[namespaces[0]]
# if first_namespace.name != first_namespace.namespace:
# msg = _("no namespace configured")
# raise DictConsistencyError(msg, 301, first_namespace.xmlfiles)
# if host_namespace not in namespaces:
# msg = _('cannot find host namespace "{0}"').format(host_namespace)
# raise DictConsistencyError(msg, 302, first_namespace.xmlfiles)
# hostnames = f"{host_namespace}.hostnames"
# if hostnames not in self.objectspace.parents[host_namespace]:
# hosts = self.objectspace.paths[host_namespace]
# msg = _('malformated host namespace "{0}", should have the "hostnames" key').format(host_namespace)
# raise DictConsistencyError(msg, 303, hosts.xmlfiles)
# for hostname in self.objectspace.parents[hostnames]:
# hosts = self.objectspace.paths[hostname]
# if hostname not in self.objectspace.families:
# msg = _('malformated host namespace "{0}", "{1}" is not a family').format(host_namespace, hostname)
# raise DictConsistencyError(msg, 304, hosts.xmlfiles)
# hosts_name = f"{hostname}.hosts"
# if hosts_name in self.objectspace.parents[hostname]:
# hosts_obj = self.objectspace.paths[hosts_name]
# if hosts_obj.type != "domainname":
# msg = _('malformated ansible hosts "{0}", is not a "domainname" variable').format(hosts_name)
# raise DictConsistencyError(msg, 305, hosts_obj.xmlfiles)
# if hosts_obj.multi is False:
# msg = _('malformated ansible hosts "{0}", it must be a multiple variable').format(hosts_name)
# raise DictConsistencyError(msg, 306, hosts_obj.xmlfiles)

View file

@ -135,6 +135,16 @@ ansible:
- directory
mandatory: false
extra_vars:
description: {_('Add extra vars inside Playbook or Role')}
type: sequence
key:
description: {_('Key name')}
mandatory: false
value: # {_('Value')}
inventory:
description: {_("Inventory configuration")}
disabled:

View file

@ -68,25 +68,26 @@ class Doc(RougailOutputDoc):
self.load()
self.load_formatter()
self.root_directory = self.ori_rougailconfig["ansible.doc.root_directory"]
self.extra_vars = dict(self.ori_rougailconfig["ansible.doc.extra_vars"].items())
if self.root_directory is None:
self.root_directory = Path(".")
else:
self.root_directory = Path(self.root_directory)
config = self._build_example_config()
examples = self._gen_doc_examples(config, True)
examples = self._gen_doc_examples(config, True, with_secret_manager=False)
config.property.read_only()
hidden = CommentedMap()
config.property.remove("mandatory")
self._example_parse_family(config.value.get(), hidden, dump_type="hidden")
self._example_parse_family(config.value.get(), hidden, dump_type="hidden", with_true_path=True)
config.property.read_write()
self.ansible_name = self.ori_rougailconfig["ansible.doc.project_name"]
self._build_defaults(config)
self._build_vars(examples)
# FIXME self._build_vars(examples)
# Description
author = self.ori_rougailconfig["ansible.doc.author"]
name = f'{author}.{self.ansible_name}'
help_ = None
description = self.ansible_name
description = None
if self.ansible_name in self.informations:
if "help" in self.informations[self.ansible_name]["informations"]:
help_ = self.informations[self.ansible_name]["informations"].pop("help")
@ -108,16 +109,25 @@ class Doc(RougailOutputDoc):
current_informations["description"] = _('The group variables "{0}" - {1}').format(current_informations["name"], current_informations["description"])
else:
current_informations["description"] = _("The group variables {0}").format(current_informations["name"])
# informations = {self.ansible_name: {"informations": {"description": "Variables", "path": None},
# "type": "family",
# "children": self.informations,
# }}
datas.append(self.formatter.title(_("Variables"), 2, collapse=False))
self.formatter.options()
datas.extend(self.formatter.dict_to_dict(self.informations, level=3))
yaml = self._build_collection(description, name)
for t in types:
tags = self.config.option(t).information.get("tags", [])
for y in yaml:
if self.extra_vars:
y["vars"].update(self.extra_vars)
for y in yaml:
if tags:
found = True
for tag in tags:
if y["ansible.builtin.import_playbook"].endswith("." + tag):
break
else:
found = False
if not found:
continue
y["vars"][t] = f'{{{{ my_{t} }}}}'
#
rougail_version = float(SUPPORTED_VERSION[-1])
@ -134,19 +144,25 @@ class Doc(RougailOutputDoc):
datas.append(end_family)
datas.append(self.formatter.title(_("Usage"), 2, collapse=False))
datas.append(self.formatter.title(_("Example Playbook with Rougail"), 3))
# fam_info = self.formatter.family_informations()
# if fam_info:
# datas.append(fam_info)
structural = {key: rougail_version}
for t in types:
structural[f'my_{t}'] = {'type': t}
if structural:
customize = CommentedMap()
old_config = self.config
test_config = config.config.copy()
test_config.property.read_only()
test_config.property.remove("mandatory")
test_config = test_config.forcepermissive
self.config = test_config
self._example_parse_family(test_config.value.get(), customize, dump_type="empty", with_secret_manager=False, with_true_path=True)
self.config = old_config
datas.append(_("Add to your structural file something like:"))
datas.append(self.formatter.yaml(dump(structural), yaml_version="1.2"))
for t in types:
if t in hidden:
if t in customize and t in hidden:
structural[f'my_{t}'].update(customize[t])
datas.append(_("Customizing hidden variables in structure file:"))
structural[f'my_{t}'].update(hidden[t])
datas.append(self.formatter.yaml(dump(structural), yaml_version="1.2"))
text = [_('Do not forget to add Rougail structure file as Rougail types.')]
datas.append(self.formatter.display_family_informations(text))
@ -161,12 +177,17 @@ class Doc(RougailOutputDoc):
_dump = "\n".join([d[2:] for d in (" " + dump(yaml)).split('\n')])
datas.append(self.formatter.yaml(_dump))
#
examples = self._gen_doc_examples(config, True)
for t in types:
if t in examples:
for y in yaml:
if t in y["vars"]:
y["vars"][t] = deepcopy(examples[t])
if not y["vars"]:
del y["vars"][t]
else:
for y in yaml:
if not y["vars"]:
del y["vars"][t]
_dump = "\n".join([d[2:] for d in (" " + dump(yaml)).split('\n')])
end_family = self.formatter.end_family(level=3)
@ -197,17 +218,16 @@ class Doc(RougailOutputDoc):
for playbook in playbooks_dir.iterdir():
if playbook.is_file() and playbook.suffix in [".yml", ".yaml"]:
playbook_name = playbook.stem
playbook_import = f"{name}.{playbook_name}"
done = True
yaml = {"name": description,
"hosts": "servers",
"vars": {},
}
if playbook_name in playbooks:
playbook_description = playbooks[playbook_name]
else:
playbook_description = yaml['name']
playbook_import = f"{name}.{playbook_name}"
yaml["name"] = playbook_description
playbook_description = f"Collection | {playbook_import}"
yaml = {"name": playbook_description,
"hosts": "servers",
"vars": {},
}
yaml["ansible.builtin.import_playbook"] = playbook_import
lst.append(yaml)
if self.collection_type != "playbooks" and not done:

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
version: string1 # A variable

View file

@ -32,6 +32,15 @@ Add to your structural file something like:
 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.
@ -45,7 +54,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -58,7 +67,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
empty: string1

View file

@ -31,6 +31,15 @@ Add to your structural file something like:
 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.
@ -44,7 +53,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -57,7 +66,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -37,6 +37,15 @@ Add to your structural file something like:
 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.
@ -44,7 +53,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -57,8 +66,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -40,6 +40,15 @@ Add to your structural file something like:
 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.
@ -47,7 +56,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -60,8 +69,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -64,9 +64,6 @@ Customizing hidden variables in structure file:
version: 1.1 
my_rougail: 
 type: rougail 
 leadership: 
 - var1: a_value # A first variable 
 var2: a_value # A first variable 
... 
▌ 🛈 Informations
@ -76,7 +73,7 @@ Customizing hidden variables in structure file:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -89,8 +86,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,5 +0,0 @@
---
rougail: # Rougail
var1: # A first variable
- domain1.lan
- domain2.lan

View file

@ -45,6 +45,15 @@ Add to your structural file something like:
 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.
@ -60,7 +69,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -73,7 +82,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
var1: string1 # A first variable

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -49,7 +58,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,7 +71,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # A first variable
var3: string1 # A new variable

View file

@ -41,6 +41,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,7 +77,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,5 +0,0 @@
---
rougail: # Rougail
var1: # A first variable
- domain1.lan
- domain2.lan

View file

@ -46,6 +46,15 @@ Add to your structural file something like:
 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.
@ -61,7 +70,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -74,7 +83,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # A variable
var2: string1 # A variable

View file

@ -35,6 +35,15 @@ Add to your structural file something like:
 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.
@ -49,7 +58,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,7 +71,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -48,6 +48,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,8 +77,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -32,6 +32,15 @@ Add to your structural file something like:
 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.
@ -39,7 +48,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -52,8 +61,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: a # The first variable
var2: a # The second variable

View file

@ -61,6 +61,15 @@ Add to your structural file something like:
 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.
@ -75,7 +84,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -88,7 +97,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
var1: a # The first variable

View file

@ -42,6 +42,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,7 +77,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -42,6 +42,15 @@ Add to your structural file something like:
 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.
@ -49,7 +58,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,8 +71,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -50,6 +50,15 @@ Add to your structural file something like:
 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.
@ -57,7 +66,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -70,8 +79,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -62,6 +62,15 @@ Add to your structural file something like:
 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.
@ -69,7 +78,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -82,8 +91,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
custom1: string1 # The first variable

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -49,7 +58,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,7 +71,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -37,6 +37,15 @@ Add to your structural file something like:
 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.
@ -44,7 +53,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -57,8 +66,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -48,6 +48,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,8 +77,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -48,6 +48,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,8 +77,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -48,6 +48,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,8 +77,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -45,6 +45,15 @@ Add to your structural file something like:
 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.
@ -52,7 +61,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -65,8 +74,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -48,6 +48,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,8 +77,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
variable1: '80' # A port variable

View file

@ -87,6 +87,15 @@ Add to your structural file something like:
 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.
@ -100,7 +109,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -113,7 +122,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -43,7 +52,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -56,8 +65,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -43,6 +43,15 @@ Add to your structural file something like:
 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.
@ -50,7 +59,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -63,8 +72,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
secret1: onE7vaLues_len1 # The first variable

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -49,7 +58,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,7 +71,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
secret1: onE7vaLues_len1 # The first variable

View file

@ -57,6 +57,15 @@ Add to your structural file something like:
 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.
@ -70,7 +79,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -83,7 +92,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,5 +0,0 @@
---
rougail: # Rougail
var1: string1 # The first variable
var2: string1 # The second variable
var3: string1 # The third variable

View file

@ -54,6 +54,15 @@ Add to your structural file something like:
 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.
@ -69,7 +78,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -82,7 +91,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -35,6 +35,15 @@ Add to your structural file something like:
 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.
@ -42,7 +51,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -55,8 +64,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # The first variable
var2: string1 # The second variable

View file

@ -45,6 +45,15 @@ Add to your structural file something like:
 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.
@ -59,7 +68,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -72,7 +81,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # The first variable
var2: string1 # The second variable

View file

@ -37,6 +37,15 @@ Add to your structural file something like:
 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.
@ -51,7 +60,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -64,7 +73,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # The first <variable>
var2: string1 # The second <variable>

View file

@ -45,6 +45,15 @@ Add to your structural file something like:
 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.
@ -59,7 +68,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -72,7 +81,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
variable: string1 # A variable

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -47,7 +56,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -60,7 +69,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,7 +0,0 @@
---
rougail: # Rougail
var1: test # The first variable
var3: test1 # The third variable
var6: # The sixth variable
- test1
- test2

View file

@ -64,6 +64,15 @@ Add to your structural file something like:
 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.
@ -81,7 +90,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -94,7 +103,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,5 +0,0 @@
---
rougail: # Rougail
variable1: # A first variable
- val1
- val2

View file

@ -40,6 +40,15 @@ Add to your structural file something like:
 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.
@ -55,7 +64,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -68,7 +77,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -57,6 +57,15 @@ Add to your structural file something like:
 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.
@ -64,7 +73,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -77,8 +86,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -40,7 +49,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -53,8 +62,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,3 +0,0 @@
---
rougail: # Rougail
var: string1 # A variable

View file

@ -33,6 +33,15 @@ Add to your structural file something like:
 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.
@ -46,7 +55,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -59,7 +68,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # A first variable
var2: string1 # A second variable

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -50,7 +59,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -63,7 +72,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -26,6 +26,12 @@ This family is a namespace
│ │ (my_variable) │ │ │ │
│ │ if it is │ │ │ │
│ │ defined │ │ │ │
│ │ • the value │ │ │ │
│ │ of the │ │ │ │
│ │ variable │ │ │ │
│ │ "my_variable… │ │ │ │
│ │ if it is │ │ │ │
│ │ defined │ │ │ │
└───────────────┴───────────────┴───────────────┴──────────────┴───────────────┘
Usage
@ -41,6 +47,15 @@ Add to your structural file something like:
 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.
@ -48,7 +63,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -61,8 +76,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -22,6 +22,12 @@ This family is a namespace
my_calculate… │ • the value │  string    │  standard  │  unique  │
│ │ of the │ multiple    │ │ │
│ │ variable │ mandatory  │ │ │
│ │ "my_variable… │ │ │ │
│ │ if it is │ │ │ │
│ │ defined │ │ │ │
│ │ • the value │ │ │ │
│ │ of the │ │ │ │
│ │ variable │ │ │ │
│ │ "my_variable" │ │ │ │
│ │ (my_variable) │ │ │ │
│ │ if it is │ │ │ │
@ -41,6 +47,15 @@ Add to your structural file something like:
 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.
@ -48,7 +63,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -61,8 +76,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -26,6 +26,12 @@ This family is a namespace
│ │ (my_variable) │ │ │ │
│ │ if it is │ │ │ │
│ │ defined │ │ │ │
│ │ • the value │ │ │ │
│ │ of the │ │ │ │
│ │ variable │ │ │ │
│ │ "my_variable… │ │ │ │
│ │ if it is │ │ │ │
│ │ defined │ │ │ │
└───────────────┴───────────────┴───────────────┴──────────────┴───────────────┘
Usage
@ -41,6 +47,15 @@ Add to your structural file something like:
 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.
@ -48,7 +63,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -61,8 +76,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,6 +0,0 @@
---
rougail: # Rougail
my_calculated_variable:
- string1
- string2
- string3

View file

@ -12,13 +12,16 @@ This family is a namespace
▌ 
▌  standard 
┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Type  ┃ Access control  ┃ Validator  ┃
┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━┩
my_calculated_va… │  string    │  standard  │  unique  │
│ │ multiple    │ │ │
│ │ mandatory  │ │ │
└───────────────────┴───────────────────┴───────────────────┴──────────────────┘
┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
 ┃ ┃ ┃ Access  ┃ ┃
 Variable  ┃ Default value ┃ Type  ┃ control  ┃ Validator  ┃
┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
my_calculate… │ the value of │  string    │  standard  │  unique  │
│ │ the variable │ multiple    │ │ │
│ │ "my_variable"mandatory  │ │ │
│ │ if it is │ │ │ │
│ │ defined. │ │ │ │
└───────────────┴───────────────┴───────────────┴──────────────┴───────────────┘
Usage
@ -33,6 +36,15 @@ Add to your structural file something like:
 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.
@ -49,7 +61,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -62,7 +74,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -41,6 +41,15 @@ Add to your structural file something like:
 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.
@ -48,7 +57,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -61,8 +70,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -36,6 +36,15 @@ Add to your structural file something like:
 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.
@ -43,7 +52,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -56,8 +65,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # A first variable
var2: string1 # A second variable

View file

@ -43,6 +43,15 @@ Add to your structural file something like:
 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.
@ -57,7 +66,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -70,7 +79,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -1,4 +0,0 @@
---
rougail: # Rougail
var1: string1 # A first variable
var2: string1 # A second variable

View file

@ -43,6 +43,15 @@ Add to your structural file something like:
 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.
@ -57,7 +66,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -70,7 +79,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -62,6 +62,15 @@ Add to your structural file something like:
 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.
@ -69,7 +78,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -82,8 +91,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,6 +0,0 @@
---
rougail: # Rougail
custom1: # A first custom variable
- string1
- string2
- string3

View file

@ -38,6 +38,15 @@ Add to your structural file something like:
 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.
@ -54,7 +63,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -67,7 +76,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -62,6 +62,15 @@ Add to your structural file something like:
 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.
@ -69,7 +78,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -82,8 +91,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -62,6 +62,15 @@ Add to your structural file something like:
 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.
@ -69,7 +78,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -82,8 +91,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,6 +0,0 @@
---
rougail: # Rougail
var: # The first variable
- 1
- 2
- 3

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -50,7 +59,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -63,7 +72,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -1,14 +0,0 @@
---
rougail: # Rougail
var1: # The first variable
- string1
- string2
- string3
var2: # The second variable
- string1
- string2
- string3
var3: # The third variable
- string1
- string2
- string3

View file

@ -62,6 +62,15 @@ Add to your structural file something like:
 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.
@ -86,7 +95,7 @@ For example you can add an YAML user data with something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -99,7 +108,7 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: 

View file

@ -43,6 +43,15 @@ Add to your structural file something like:
 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.
@ -50,7 +59,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -63,8 +72,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

View file

@ -34,6 +34,15 @@ Add to your structural file something like:
 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.
@ -41,7 +50,7 @@ Add to your structural file something like:
Add to your Play:
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: 
 rougail: '{{ my_rougail }}' 
@ -54,8 +63,9 @@ Add to your Play:
▌ The variables will not be properly validated without Rougail.
--- 
- name: Rougail 
- name: Collection | rougail.rougail.install 
 hosts: servers 
 vars: {} 
 vars: 
 rougail: '{{ my_rougail }}' 
 ansible.builtin.import_playbook: rougail.rougail.install 

Some files were not shown because too many files have changed in this diff Show more