[PR #4984] [CLOSED] Feat/integrate zitadel #24645

Open
opened 2026-08-05 06:08:57 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/4984
Author: @shuuri-labs
Created: 12/22/2025
Status: Closed

Base: mainHead: feat/integrate-zitadel


📝 Commits (2)

  • eb57814 refactor(idp): make NetBird single source of truth for authorization
  • 9291e31 Add API for managing external identity provider connectors through

📊 Changes

46 files changed (+102030 additions, -5792 deletions)

View changed files

docs/plans/self-service-auth-plan.mdx (+352 -0)
infrastructure_files/Caddyfile.tmpl (+83 -0)
📝 infrastructure_files/base.setup.env (+61 -16)
📝 infrastructure_files/configure.sh (+102 -226)
📝 infrastructure_files/docker-compose.yml.tmpl (+80 -51)
📝 infrastructure_files/management.json.tmpl (+22 -34)
📝 infrastructure_files/setup.env.example (+43 -95)
📝 management/server/account.go (+49 -105)
📝 management/server/http/handler.go (+2 -0)
management/server/http/handlers/connectors/connectors_handler.go (+590 -0)
management/server/idp/auth0.go (+0 -959)
management/server/idp/auth0_test.go (+0 -473)
management/server/idp/authentik.go (+0 -428)
management/server/idp/authentik_test.go (+0 -320)
management/server/idp/azure.go (+0 -459)
management/server/idp/azure_test.go (+0 -178)
management/server/idp/connector.go (+457 -0)
management/server/idp/connector_test.go (+313 -0)
management/server/idp/google_workspace.go (+0 -263)
📝 management/server/idp/idp.go (+24 -108)

...and 26 more files

📄 Description

Describe your changes

Stack

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)

By submitting this pull request, you confirm that you have read and agree to the terms of the Contributor License Agreement.

Documentation

Select exactly one:

  • I added/updated documentation for this change
  • Documentation is not needed for this change (explain why)

Docs PR URL (required if "docs added" is checked)

Paste the PR link from https://github.com/netbirdio/docs here:

https://github.com/netbirdio/docs/pull/__


🔄 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/4984 **Author:** [@shuuri-labs](https://github.com/shuuri-labs) **Created:** 12/22/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/integrate-zitadel` --- ### 📝 Commits (2) - [`eb57814`](https://github.com/netbirdio/netbird/commit/eb578146e4f1a7d37e436a738b49f083416a1ed8) refactor(idp): make NetBird single source of truth for authorization - [`9291e31`](https://github.com/netbirdio/netbird/commit/9291e3134bedcaaad6931adb5a439d2bd0efe3e6) Add API for managing external identity provider connectors through ### 📊 Changes **46 files changed** (+102030 additions, -5792 deletions) <details> <summary>View changed files</summary> ➕ `docs/plans/self-service-auth-plan.mdx` (+352 -0) ➕ `infrastructure_files/Caddyfile.tmpl` (+83 -0) 📝 `infrastructure_files/base.setup.env` (+61 -16) 📝 `infrastructure_files/configure.sh` (+102 -226) 📝 `infrastructure_files/docker-compose.yml.tmpl` (+80 -51) 📝 `infrastructure_files/management.json.tmpl` (+22 -34) 📝 `infrastructure_files/setup.env.example` (+43 -95) 📝 `management/server/account.go` (+49 -105) 📝 `management/server/http/handler.go` (+2 -0) ➕ `management/server/http/handlers/connectors/connectors_handler.go` (+590 -0) ➖ `management/server/idp/auth0.go` (+0 -959) ➖ `management/server/idp/auth0_test.go` (+0 -473) ➖ `management/server/idp/authentik.go` (+0 -428) ➖ `management/server/idp/authentik_test.go` (+0 -320) ➖ `management/server/idp/azure.go` (+0 -459) ➖ `management/server/idp/azure_test.go` (+0 -178) ➕ `management/server/idp/connector.go` (+457 -0) ➕ `management/server/idp/connector_test.go` (+313 -0) ➖ `management/server/idp/google_workspace.go` (+0 -263) 📝 `management/server/idp/idp.go` (+24 -108) _...and 26 more files_ </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ## Stack <!-- branch-stack --> ### 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) > By submitting this pull request, you confirm that you have read and agree to the terms of the [Contributor License Agreement](https://github.com/netbirdio/netbird/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT.md). ## Documentation Select exactly one: - [ ] I added/updated documentation for this change - [ ] Documentation is **not needed** for this change (explain why) ### Docs PR URL (required if "docs added" is checked) Paste the PR link from https://github.com/netbirdio/docs here: https://github.com/netbirdio/docs/pull/__ --- <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 06:08: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#24645