infrastructure/roles/heimdall-order/cfg.schema.json

39 lines
591 B
JSON
Raw Permalink Normal View History

2026-03-31 21:12:54 +02:00
{
"nullable": false,
"type": "object",
"properties": {
"user": {
"nullable": false,
"type": "string",
"default": "heimdall"
},
2026-03-31 21:56:12 +02:00
"directory_program": {
2026-03-31 21:12:54 +02:00
"nullable": false,
"type": "string",
2026-03-31 21:56:12 +02:00
"default": "/opt/heimdall"
2026-03-31 21:12:54 +02:00
},
2026-03-31 21:56:12 +02:00
"directory_conf": {
2026-03-31 21:12:54 +02:00
"nullable": false,
2026-03-31 21:56:12 +02:00
"type": "string",
"default": "/etc/heimdall"
2026-03-31 21:12:54 +02:00
},
"name": {
"nullable": false,
"type": "string"
},
"conf": {
"type": "any"
2026-03-31 21:56:12 +02:00
},
"rate": {
"nullable": false,
"type": "integer",
"default": 15
2026-03-31 21:12:54 +02:00
}
},
"additionalProperties": false,
"required": [
"name",
"conf"
]
}