mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-14 12:38:45 +00:00
64 lines
1.5 KiB
Markdown
64 lines
1.5 KiB
Markdown
![]() |
---
|
||
|
title: Google SSO
|
||
|
slug: /deployment/security/google
|
||
|
---
|
||
|
|
||
|
# Google SSO
|
||
|
|
||
|
Follow the sections in this guide to set up Google SSO.
|
||
|
|
||
|
<Collapse title="Create Server Credentials">
|
||
|
|
||
|
</Collapse>
|
||
|
|
||
|
<Collapse title="Create Service Account">
|
||
|
|
||
|
</Collapse>
|
||
|
|
||
|
After the applying these steps, you can update the configuration of your deployment:
|
||
|
|
||
|
<InlineCalloutContainer>
|
||
|
<InlineCallout
|
||
|
color="violet-70"
|
||
|
icon="celebration"
|
||
|
bold="Docker Security"
|
||
|
href="/deployment/security/google/docker"
|
||
|
>
|
||
|
Configure Auth0 SSO for your Docker Deployment.
|
||
|
</InlineCallout>
|
||
|
<InlineCallout
|
||
|
color="violet-70"
|
||
|
icon="storage"
|
||
|
bold="Bare Metal Security"
|
||
|
href="/deployment/security/google/bare-metal"
|
||
|
>
|
||
|
Configure Auth0 SSO for your Bare Metal Deployment.
|
||
|
</InlineCallout>
|
||
|
<InlineCallout
|
||
|
color="violet-70"
|
||
|
icon="fit_screen"
|
||
|
bold="Kubernetes Security"
|
||
|
href="/deployment/security/google/kubernetes"
|
||
|
>
|
||
|
Configure Auth0 SSO for your Kubernetes Deployment.
|
||
|
</InlineCallout>
|
||
|
</InlineCalloutContainer>
|
||
|
|
||
|
## Configure Ingestion
|
||
|
|
||
|
After everything has been set up, you will need to configure your workflows if you are running them via the
|
||
|
`metadata` CLI or with any custom scheduler.
|
||
|
|
||
|
When setting up the YAML config for the connector, update the `workflowConfig` as follows:
|
||
|
|
||
|
```yaml
|
||
|
workflowConfig:
|
||
|
openMetadataServerConfig:
|
||
|
hostPort: 'http://localhost:8585/api'
|
||
|
authProvider: auth0
|
||
|
securityConfig:
|
||
|
clientId: '{your_client_id}'
|
||
|
secretKey: '{your_client_secret}'
|
||
|
domain: '{your_domain}'
|
||
|
```
|