[fix] role:espe_backend:outputs
This commit is contained in:
parent
cabc808e2b
commit
012ac2bd9a
3 changed files with 22 additions and 6 deletions
|
@ -35,5 +35,5 @@
|
|||
"var_espe_backend_name_index_veil": true,
|
||||
"var_espe_backend_name_index_salt": "REPLACE_ME",
|
||||
"var_espe_backend_admins": [],
|
||||
"var_espe_backend_output_authelia": null
|
||||
"var_espe_backend_outputs": []
|
||||
}
|
||||
|
|
|
@ -87,7 +87,5 @@
|
|||
}
|
||||
},
|
||||
"admins": {{var_espe_backend_admins | to_json}},
|
||||
"output": {
|
||||
"authelia": {{var_espe_backend_output_authelia | to_json}}
|
||||
}
|
||||
"outputs": {{var_espe_backend_outputs | to_json}}
|
||||
}
|
||||
|
|
|
@ -179,8 +179,26 @@
|
|||
},
|
||||
"mandatory": false
|
||||
},
|
||||
"output_authelia": {
|
||||
"outputs": {
|
||||
"nullable": true,
|
||||
"type": "string"
|
||||
"type": "array",
|
||||
"items": {
|
||||
"nullable": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"nullable": false,
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"data"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue