2024-11-06 17:39:13 +01:00
---
gitea: none
include_toc: true
---
2024-12-02 20:21:31 +01:00
# Variables
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **var1** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.< br /> **Validator**: the domain name can be an IP |
| **var2** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.< br /> **Validator**: the domain name can be an IP< br /> **Default**: the value of the variable "var1". |
# Example with mandatory variables not filled in
2024-11-06 17:39:13 +01:00
```yaml
---
var1:
2024-12-02 20:21:31 +01:00
- example.net
```
# Example with all variables modifiable
2024-11-06 17:39:13 +01:00
2024-12-02 20:21:31 +01:00
```yaml
---
var1:
- example.net
2024-11-06 17:39:13 +01:00
var2:
2024-12-02 20:21:31 +01:00
- example.net
2024-11-06 17:39:13 +01:00
```