mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Fix elasticsearch.ssl.alwaysPresentCertificate default (#52242)
* Fixing the default for elasticsearch.ssl.alwaysPresentCertificate * Updating snapshot
This commit is contained in:
parent
9ee67fb6a1
commit
d4f604783f
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ test('set correct defaults', () => {
|
|||
"sniffOnConnectionFault": false,
|
||||
"sniffOnStart": false,
|
||||
"ssl": Object {
|
||||
"alwaysPresentCertificate": true,
|
||||
"alwaysPresentCertificate": false,
|
||||
"certificateAuthorities": undefined,
|
||||
"verificationMode": "full",
|
||||
},
|
||||
|
|
|
@ -78,7 +78,7 @@ export const config = {
|
|||
certificate: schema.maybe(schema.string()),
|
||||
key: schema.maybe(schema.string()),
|
||||
keyPassphrase: schema.maybe(schema.string()),
|
||||
alwaysPresentCertificate: schema.boolean({ defaultValue: true }),
|
||||
alwaysPresentCertificate: schema.boolean({ defaultValue: false }),
|
||||
}),
|
||||
apiVersion: schema.string({ defaultValue: DEFAULT_API_VERSION }),
|
||||
healthCheck: schema.object({ delay: schema.duration({ defaultValue: 2500 }) }),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue