OpenMetadata/docs/install/enable-security/google-sso/configure-security-ingestion.md
parthp2107 5c06d0ab16
applied license to frontend files (#17)
* applied license to frontend files

* Update EmbeddedMySqlSupport.java

Co-authored-by: parthp2107 <parth.panchal@deuexsoultions.com>
2021-08-02 17:24:01 +05:30

994 B

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 json file generated in Create Service Account as secret_key

{% code title="Connector Config for MySQL Connector:" %}

{
...
   "metadata_server": {
    "type": "metadata-server",
    "config": {
      "api_endpoint": "http://localhost:8585/api",
    "auth_provider_type": "google",
    "secret_key": "/Users/JohnDoe/Code/catalog/ingestion/pipelines/custom-name-320505-17b19fc14416.json"
    }
  },
...
}

{% 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 %}