mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-03 22:58:21 +00:00

* GitBook: [#50] BigQuery, Glue, MSSQL, Postgres, Redshift, Snowflake - V2 * GitBook: [#62] No subject * GitBook: [#63] No subject * GitBook: [#64] Beta * GitBook: [#65] Make Harsha's requested changes to connectors section organization * GitBook: [#66] Kerberos authentication with Hive * GitBook: [#67] Fix procedure overview links * GitBook: [#68] Fix procedure overview links * GitBook: [#69] correct step reference * GitBook: [#70] Add Kerberos connection troubleshooting * updated json schema and schema docs (#3219) * updated json schema and schema docs * added glossay to readme * GitBook: [#72] Metrics & Tests Co-authored-by: Parth Panchal <parth.panchal@deuexsolutions.com> Co-authored-by: Shilpa V <vernekar.shilpa@gmail.com> Co-authored-by: Shannon Bradshaw <shannon.bradshaw@arrikto.com> Co-authored-by: parthp2107 <83201188+parthp2107@users.noreply.github.com> Co-authored-by: pmbrull <peremiquelbrull@gmail.com>
29 lines
907 B
Markdown
29 lines
907 B
Markdown
# Copy of Configure OpenMetadata Server
|
|
|
|
## Update conf/openmetadata-security.yaml
|
|
|
|
Once the `client id` and `client secret` are generated, add `client id` as the value of the `clientId` field in the openmetadata-security.yaml file. See the snippet below for an example of where to place the `client id` value.
|
|
|
|
```
|
|
authenticationConfiguration:
|
|
provider: "google"
|
|
publicKey: "https://www.googleapis.com/oauth2/v3/certs"
|
|
authority: "https://accounts.google.com"
|
|
clientId: "{client id}"
|
|
callbackUrl: "http://localhost:8585/callback"
|
|
```
|
|
|
|
Then, 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"
|
|
principalDomain: "open-metadata.org"
|
|
```
|