2024-11-06 17:39:13 +01:00
---
gitea: none
include_toc: true
---
2025-02-10 09:52:12 +01:00
# Variables for "Rougail"
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **rougail.condition** < br /> [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A conditional variable.< br /> **Default**: no |
| **rougail.variable1** < br /> [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A first variable.< br /> **Disabled**: if condition is egal to "yes". |
| **rougail.variable2** < br /> [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A second variable.< br /> **Disabled**: if condition is egal to "yes". |
# Example with mandatory variables not filled in
2024-11-06 17:39:13 +01:00
```yaml
---
2025-02-10 09:52:12 +01:00
rougail:
variable1:
- example
variable2:
- example
2024-11-06 17:39:13 +01:00
```
2025-02-10 09:52:12 +01:00
# Example with all variables modifiable
2024-11-06 17:39:13 +01:00
2025-02-10 09:52:12 +01:00
```yaml
---
rougail:
condition: no
variable1:
- example
variable2:
- example
```