2021-08-01 14:27:44 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								---
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								description: This is a guide to configure Ingestion Connectors with security.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								---
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# Configure Ingestion
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								## Add Metadata Authentication for Connectors
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-08-15 05:52:08 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								All Connectors have **metadata\_server**  config. Pass the public/private keypair generated in step 1 in [Create Service Account ](create-ingestion-service-account.md ) as secret\_key
							 
						 
					
						
							
								
									
										
										
										
											2021-08-01 14:27:44 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								{% code title="Connector Config for MySQL Connector:" %}
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```javascript
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								{
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								...
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   "metadata_server": {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "type": "metadata-server",
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "config": {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      "api_endpoint": "http://localhost:8585/api",
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "auth_provider_type": "okta",
							 
						 
					
						
							
								
									
										
										
										
											2021-08-15 05:49:53 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    "client_id": "{client_id}",
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "org_url": "{okta_domain}",
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "email": "{email}",
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    "private_key": "{public/private keypair}"
							 
						 
					
						
							
								
									
										
										
										
											2021-08-01 14:27:44 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  },
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								...
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								{% 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 %}