Skip to content

Commit

Permalink
fix(elasticsearch): add ssl option to config, bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jenyapoyarkov committed May 6, 2016
1 parent 3343beb commit 454c751
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions schemas/elasticsearch.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,58 @@
}]
}
},
"ssl": {
"pfx": {
"oneOf": [{
"type": "string",
"minLength": 1
}, {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}]
},
"key": {
"type": "string",
"minLength": 1
},
"passphrase": {
"type": "string",
"minLength": 1
},
"cert": {
"type": "string",
"minLength": 1
},
"ca": {
"oneOf": [{
"type": "string",
"minLength": 1
}, {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}]
},
"ciphers": {
"type": "string",
"minLength": 1
},
"rejectUnauthorized": {
"type": "boolean",
"default": "false"
},
"secureProtocol": {
"type": "string",
"minLength": 1
}
},
"apiVersion": {
"type": "string"
},
Expand Down

0 comments on commit 454c751

Please sign in to comment.