mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-10-30 18:17:53 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			864 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			864 B
		
	
	
	
	
	
	
	
Configure OpenMetadata Server
Update conf/openmetadata-security.yaml
- Once the Client Id, Client secret, issuer, and the audience are generated, add those details in openmetadata-security.yamlfile in the respective field.
authenticationConfiguration:
  provider: "google"
  publicKey: "https://www.googleapis.com/oauth2/v3/certs"
  authority: "https://accounts.google.com"
  clientId: "{Client Secret}"
  callbackUrl: "http://localhost:8585/callback"
- Update authorizerConfigurationto addadminPrincipals
authorizerConfiguration:
  className: "org.openmetadata.catalog.security.DefaultCatalogAuthorizer"
  # JWT Filter
  containerRequestFilter: "org.openmetadata.catalog.security.JwtFilter"
  adminPrincipals:
    - "suresh"
  botPrincipals:
    - "ingestion-bot"
  principalDomain: "open-metadata.org"
