2022-03-22 11:44:28 -07:00

818 B

Copy of Configure OpenMetadata Server

Update conf/openmetadata-security.yaml

  • Once the Client Id, and Issuer URL are generated, add those details in openmetadata-security.yaml file in the respective fields.
authenticationConfiguration:
  provider: "okta"
  publicKey: "{ISSUER_URL}/v1/keys"
  authority: "{ISSUER_URL}"
  clientId: "{CLIENT_ID - SPA APP}"
  callbackUrl: "http://localhost:8585/callback"
  • Update authorizerConfiguration to add adminPrincipals
authorizerConfiguration:
  className: "org.openmetadata.catalog.security.DefaultAuthorizer"
  containerRequestFilter: "org.openmetadata.catalog.security.JwtFilter"
  adminPrincipals:
    - "<username>"
  botPrincipals:
    - "ingestion-bot"
    - "<Ingestion Client ID>"
  principalDomain: "open-metadata.org"