OpenMetadata/docs/install/enable-security/okta-sso/configure-security-ingestion.md
2021-10-15 11:31:33 -07:00

34 lines
920 B
Markdown

---
description: This is a guide to configure Ingestion Connectors with security.
---
# Configure Ingestion
## Add Metadata Authentication for Connectors
All Connectors have **metadata_server** config. Pass the public/private key pair generated in step 1 in [Create Service Account](create-ingestion-service-account.md) as secret_key
{% code title="Connector Config for MySQL Connector:" %}
```javascript
{
...
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "okta",
"client_id": "{client_id}",
"org_url": "{okta_domain}",
"email": "{email}",
"private_key": "{public/private keypair}"
}
},
...
}
```
{% endcode %}
{% hint style="warning" %}
Make sure you configure the metadata_server section on all of the connector configs if you are ingesting into a secured OpenMetadataSever
{% endhint %}