Skip to content
Snippets Groups Projects
Commit e0cfa124 authored by Robert Latta's avatar Robert Latta
Browse files

reinstated otrs-export to config as optional

parent 49cb0248
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,22 @@ CONFIG_SCHEMA = {
'required': ['api', 'username', 'password'],
'additionalProperties': False
},
'otrs-export': {
'type': 'object',
'properties': {
'username': {'type': 'string'},
'private-key': {'type': 'string'},
'known-hosts': {'type': 'string'},
'destination': {'type': 'string'}
},
'required': [
'username',
'private-key',
'known-hosts',
'destination'
],
'additionalProperties': False
},
'redis-credentials': {
'type': 'object',
'properties': {
......@@ -175,6 +191,7 @@ CONFIG_SCHEMA = {
'redis': {'$ref': '#/definitions/redis-credentials'},
'sentinel': {'$ref': '#/definitions/redis-sentinel-config'},
'ims': {'$ref': '#/definitions/ims'},
'otrs-export': {'$ref': '#/definitions/otrs-export'},
'redis-databases': {
'type': 'array',
'minItems': 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment