From 91396f5aa2dfa303460a9b4d0cd455825aaa05bd Mon Sep 17 00:00:00 2001 From: jkoberg Date: Tue, 23 Jul 2024 08:59:52 +0200 Subject: [PATCH] feat(auth-app): add changelog Signed-off-by: jkoberg --- changelog/unreleased/auth-app-service.md | 5 +++++ services/auth-app/README.md | 2 +- services/auth-basic/README.md | 2 +- services/auth-bearer/README.md | 2 +- services/auth-machine/README.md | 2 +- services/auth-service/README.md | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 changelog/unreleased/auth-app-service.md diff --git a/changelog/unreleased/auth-app-service.md b/changelog/unreleased/auth-app-service.md new file mode 100644 index 0000000000..3d27f95eba --- /dev/null +++ b/changelog/unreleased/auth-app-service.md @@ -0,0 +1,5 @@ +Enhancement: Introduce auth-app service + +Introduce a new service, auth-app, that provides authentication and authorization services for applications. + +https://github.com/owncloud/ocis/pull/9079 diff --git a/services/auth-app/README.md b/services/auth-app/README.md index 28a75336f0..012490527e 100644 --- a/services/auth-app/README.md +++ b/services/auth-app/README.md @@ -5,11 +5,11 @@ The auth-app service provides authentication for 3rd party apps. ## The `auth` Service Family ocis uses serveral authentication services for different use cases. All services that start with `auth-` are part of the authentication service family. Each member authenticates requests with different scopes. As of now, these services exist: + - `auth-app` handles authentication of external 3rd party apps - `auth-basic` handles basic authentication - `auth-bearer` handles oidc authentication - `auth-machine` handles interservice authentication when a user is impersonated - `auth-service` handles interservice authentication when using service accounts - - `auth-app` handles authentication of external 3rd party apps ## Service Startup diff --git a/services/auth-basic/README.md b/services/auth-basic/README.md index b293d338aa..5b90fdcb8c 100644 --- a/services/auth-basic/README.md +++ b/services/auth-basic/README.md @@ -9,11 +9,11 @@ To enable `auth-basic`, you first must set `PROXY_ENABLE_BASIC_AUTH` to `true`. ## The `auth` Service Family ocis uses serveral authentication services for different use cases. All services that start with `auth-` are part of the authentication service family. Each member authenticates requests with different scopes. As of now, these services exist: + - `auth-app` handles authentication of external 3rd party apps - `auth-basic` handles basic authentication - `auth-bearer` handles oidc authentication - `auth-machine` handles interservice authentication when a user is impersonated - `auth-service` handles interservice authentication when using service accounts - - `auth-app` handles authentication of external 3rd party apps ## Auth Managers diff --git a/services/auth-bearer/README.md b/services/auth-bearer/README.md index 63eef5fa03..152359c885 100644 --- a/services/auth-bearer/README.md +++ b/services/auth-bearer/README.md @@ -5,11 +5,11 @@ The oCIS Auth Bearer service communicates with the configured OpenID Connect ide ## The `auth` Service Family ocis uses serveral authentication services for different use cases. All services that start with `auth-` are part of the authentication service family. Each member authenticates requests with different scopes. As of now, these services exist: + - `auth-app` handles authentication of external 3rd party apps - `auth-basic` handles basic authentication - `auth-bearer` handles oidc authentication - `auth-machine` handles interservice authentication when a user is impersonated - `auth-service` handles interservice authentication when using service accounts - - `auth-app` handles authentication of external 3rd party apps ## Built in OpenID Connect Identity Provider diff --git a/services/auth-machine/README.md b/services/auth-machine/README.md index bafdfcff56..31222489e2 100644 --- a/services/auth-machine/README.md +++ b/services/auth-machine/README.md @@ -3,11 +3,11 @@ The oCIS Auth Machine is used for interservice communication when using user impersonation. ocis uses serveral authentication services for different use cases. All services that start with `auth-` are part of the authentication service family. Each member authenticates requests with different scopes. As of now, these services exist: + - `auth-app` handles authentication of external 3rd party apps - `auth-basic` handles basic authentication - `auth-bearer` handles oidc authentication - `auth-machine` handles interservice authentication when a user is impersonated - `auth-service` handles interservice authentication when using service accounts - - `auth-app` handles authentication of external 3rd party apps ## User Impersonation diff --git a/services/auth-service/README.md b/services/auth-service/README.md index e2338ab6ed..b4b94633e1 100644 --- a/services/auth-service/README.md +++ b/services/auth-service/README.md @@ -5,11 +5,11 @@ The ocis Auth Service is used to authenticate service accounts. Compared to norm ## The `auth` Service Family ocis uses serveral authentication services for different use cases. All services that start with `auth-` are part of the authentication service family. Each member authenticates requests with different scopes. As of now, these services exist: + - `auth-app` handles authentication of external 3rd party apps - `auth-basic` handles basic authentication - `auth-bearer` handles oidc authentication - `auth-machine` handles interservice authentication when a user is impersonated - `auth-service` handles interservice authentication when using service accounts - - `auth-app` handles authentication of external 3rd party apps ## Service Accounts