ansible-base/roles/authelia-for-hedgedoc/cfg.schema.json

25 lines
384 B
JSON
Raw Normal View History

2025-10-08 11:20:09 +02:00
{
"nullable": false,
"type": "object",
"properties": {
"hedgedoc_url_base": {
"nullable": false,
2025-10-08 11:31:00 +02:00
"type": "string"
2025-10-08 11:20:09 +02:00
},
"client_id": {
"nullable": false,
"type": "string",
"default": "hedgedoc"
},
"client_secret": {
"nullable": false,
"type": "string"
}
},
"additionalProperties": false,
"required": [
2025-10-08 11:31:00 +02:00
"hedgedoc_url_base",
2025-10-08 11:20:09 +02:00
"client_secret"
]
}