datahub/metadata-ingestion/examples/recipes/elasticsearch_to_datahub.dhub.yaml
xiphl 16ff4aaa94
feat(ingest) Allow ingestion of Elasticsearch index template (#5444)
Co-authored-by: Ravindra Lanka <rlanka@acryl.io>
2022-08-03 20:58:07 -07:00

23 lines
513 B
YAML

source:
type: "elasticsearch"
config:
host: 'localhost:9200'
username: ""
password: ""
use_ssl: False
verify_certs: False
ca_certs: "./path/ca.cert"
client_cert: "./path/client.cert"
client_key: "./path/client.key"
ssl_assert_hostname: False
ssl_assert_fingerprint: "./path/cert.fingerprint"
ingest_index_templates: False
# index_template_pattern:
# allow:
# - "^.+"
sink:
type: "datahub-rest"
config:
server: "http://localhost:8080"