mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-11-03 20:19:31 +00:00 
			
		
		
		
	* added auth0 integration and auth0 integration docs * added client_id check and minor changes * Update JwtFilter.java * UI implementation for Auth0 * added auth0 integration and auth0 integration docs * added client_id check and minor changes * Update JwtFilter.java * UI implementation for Auth0 * added exception in JwtFilter * Addressing comments * Update JwtFilter.java * Addressing comments * Addressing Comments * Addressig comments * post merge fixes Co-authored-by: parthp2107 <parth.panchal@deuexsoultions.com> Co-authored-by: darth-coder00 <aashit@getcollate.io>
		
			
				
	
	
		
			34 lines
		
	
	
		
			880 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			880 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 JSON file generated 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": "auth0",
 | 
						|
    "client_id": "{your_client_id}",
 | 
						|
    "secret_key": "{your_client_secret}",
 | 
						|
    "domain": "{your_domain}"    
 | 
						|
    }
 | 
						|
  },
 | 
						|
...
 | 
						|
}
 | 
						|
```
 | 
						|
{% 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 %}
 | 
						|
 |