kibana/packages/kbn-dev-utils/index.ts
Patryk Kopyciński 5dedc992a1
[osquery] Setup E2E against Serverless ES, Kibana, Fleet server standalone and Elastic agents in Docker (#165415)
## Summary

Let's automate E2E against Serverless

Changelog:
- updated certs to include additional dns names we are using for testing
locally, `host.docker.internal`, `es01`
- updated certs generation README to include changes related to
`openssl@3`
- added new certs for Fleet server
- added fleet-server service token
- added support for `ca_trusted_fingerprint` in fleet preconfig


![image](64860344-184f-45ef-99d4-dd7a5a8d6d23)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Tomasz Ciecierski <ciecierskitomek@gmail.com>
Co-authored-by: Tomasz Ciecierski <tomasz.ciecierski@elastic.co>
Co-authored-by: Kevin Logan <kevin.logan@elastic.co>
2023-09-29 03:33:06 -07:00

32 lines
927 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
export {
CA_CERT_PATH,
CA_TRUSTED_FINGERPRINT,
ES_KEY_PATH,
ES_CERT_PATH,
ES_P12_PATH,
ES_P12_PASSWORD,
ES_EMPTYPASSWORD_P12_PATH,
ES_NOPASSWORD_P12_PATH,
KBN_KEY_PATH,
KBN_CERT_PATH,
KBN_P12_PATH,
KBN_P12_PASSWORD,
FLEET_SERVER_KEY_PATH,
FLEET_SERVER_CERT_PATH,
FLEET_SERVER_P12_PATH,
FLEET_SERVER_P12_PASSWORD,
} from './src/certs';
export * from './src/dev_service_account';
export * from './src/axios';
export * from './src/plugin_list';
export * from './src/streams';
export * from './src/extract';
export * from './src/diff_strings';