[PR #949] [MERGED] Add Google Workspace IdP #14596

Closed
opened 2026-08-05 03:05:57 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/949
Author: @bcmmbaga
Created: 6/11/2023
Status: Merged
Merged: 6/20/2023
Merged by: @mlsmaycon

Base: mainHead: feat/google-idp


📝 Commits (10+)

  • 6657ff7 initialize google IdP
  • f31f5ef wip: implement google IdP manager
  • 654dd36 fetch access token
  • 458efa7 Merge remote-tracking branch 'upstream/main' into feat/google-idp
  • 42c3e26 load google service account json credentials
  • b11a3ca sync dependencies
  • 34a8ec5 initialize google admin directory service client
  • f2d3fd4 implement UpdateUserAppMetadata for google IdP
  • bbab262 implement GetUserByEmail for google IdP
  • 7aa3b79 implement GetUserDataByID for google IdP

📊 Changes

4 files changed (+398 additions, -15 deletions)

View changed files

📝 go.mod (+14 -6)
📝 go.sum (+34 -9)
management/server/idp/google_workspace.go (+344 -0)
📝 management/server/idp/idp.go (+6 -0)

📄 Description

Describe your changes

Added intergration with Google Workspace user directory API.
Use the steps in setup.md for configuration.

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/949 **Author:** [@bcmmbaga](https://github.com/bcmmbaga) **Created:** 6/11/2023 **Status:** ✅ Merged **Merged:** 6/20/2023 **Merged by:** [@mlsmaycon](https://github.com/mlsmaycon) **Base:** `main` ← **Head:** `feat/google-idp` --- ### 📝 Commits (10+) - [`6657ff7`](https://github.com/netbirdio/netbird/commit/6657ff7ceca8cc90375d4364375508ba5dc4bb64) initialize google IdP - [`f31f5ef`](https://github.com/netbirdio/netbird/commit/f31f5ef47ca4faf22a24d7a645b318fb11671a0f) wip: implement google IdP manager - [`654dd36`](https://github.com/netbirdio/netbird/commit/654dd3652573c5e479ffd66f1f9fd8244061c144) fetch access token - [`458efa7`](https://github.com/netbirdio/netbird/commit/458efa75db99be3737fef3ec82987b8487eefd85) Merge remote-tracking branch 'upstream/main' into feat/google-idp - [`42c3e26`](https://github.com/netbirdio/netbird/commit/42c3e26a2b011de032543b04839b03cbeab2f1f3) load google service account json credentials - [`b11a3ca`](https://github.com/netbirdio/netbird/commit/b11a3ca669bed9f0980661238968b5d45866654f) sync dependencies - [`34a8ec5`](https://github.com/netbirdio/netbird/commit/34a8ec51bb8c951ef90f7f90c90e6c7721f05e78) initialize google admin directory service client - [`f2d3fd4`](https://github.com/netbirdio/netbird/commit/f2d3fd43ab05fe79eab624d926045aed9b70f361) implement UpdateUserAppMetadata for google IdP - [`bbab262`](https://github.com/netbirdio/netbird/commit/bbab262cbbeb92d94484c9f66b5daaf23cc05f33) implement GetUserByEmail for google IdP - [`7aa3b79`](https://github.com/netbirdio/netbird/commit/7aa3b796e2e239c58fb15834ba88ebcb1e34ac6f) implement GetUserDataByID for google IdP ### 📊 Changes **4 files changed** (+398 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+14 -6) 📝 `go.sum` (+34 -9) ➕ `management/server/idp/google_workspace.go` (+344 -0) 📝 `management/server/idp/idp.go` (+6 -0) </details> ### 📄 Description ## Describe your changes Added intergration with Google Workspace user directory API. Use the steps in [setup.md](https://github.com/netbirdio/docs/pull/65/files#diff-4f558bee056573d91b97c5cb4ce33727ea6df64f8ea7e74458c936af677d4be0R970) for configuration. ## Issue ticket number and link ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 03:05:57 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#14596