esa-nodecg/shared/schemas/configschema/rabbitmq.json
2024-03-13 11:26:46 +01:00

42 lines
756 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"protocol": {
"type": "string",
"default": "amqps"
},
"hostname": {
"type": "string",
"default": "mq.esamarathon.com"
},
"username": {
"type": "string",
"default": "USERNAME"
},
"password": {
"type": "string",
"default": "PASSWORD"
},
"vhost": {
"type": "string",
"default": "esa_prod"
},
"queuePrepend": {
"type": "string"
}
},
"required": [
"enabled",
"protocol",
"hostname",
"username",
"password",
"vhost"
]
}