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

25 lines
407 B
JSON
Raw Normal View History

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