ansible-base/roles/authelia-for-hedgedoc/cfg.schema.json
Christian Fraß 33491acb37 [int]
2025-10-08 11:20:09 +02:00

25 lines
407 B
JSON

{
"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"
]
}