mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-13 20:18:24 +00:00
834 B
834 B
Configure OpenMetadata Server
Update conf/openmetadata-security.yaml
-
Once the
Client Id
andClient secret
is generated.Add the
Client Id
in openmetadata-security.yaml file inclient_id
field.
authenticationConfiguration:
provider: "auth0"
publicKey: "https://parth-panchal.us.auth0.com/.well-known/jwks.json"
authority: "https://parth-panchal.us.auth0.com/"
clientId: "{Client Secret}"
callbackUrl: "http://localhost:8585/callback"
- Update authorizerConfiguration to add adminPrincipals
authorizerConfiguration:
className: "org.openmetadata.catalog.security.DefaultAuthorizer"
# JWT Filter
containerRequestFilter: "org.openmetadata.catalog.security.JwtFilter"
adminPrincipals:
- "suresh"
botPrincipals:
- "ingestion-bot"
prinicipalDomain: "open-metadata.org"