Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripts/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ function replicate_all {
["keto"]="Keto"
["oathkeeper"]="Oathkeeper"
["kratos"]="Kratos"
["polis"]="Polis"
["polis-examples"]="Polis Examples"
["saml20"]="SAML 2.0 library for Node.js"
["hydra-login-consent-node"]="Hydra Login, Logout And Consent Node Example"
["docs"]="Documentation"
["cli"]="CLI"
Expand Down Expand Up @@ -91,6 +94,7 @@ function replicate_all {
["keto"]="server"
["oathkeeper"]="server"
["kratos"]="server"
["polis"]="server"
["closed-reference-notifier"]="action"
["label-sync-action"]="action"
["milestone-action"]="action"
Expand Down Expand Up @@ -341,7 +345,7 @@ function substitute_placeholders_in_file {
local -r human_name=$4
header "SUBSTITUTING PLACEHOLDERS IN FILE"
case "$repo_id" in
"ory/hydra" | "ory/kratos" | "ory/oathkeeper" | "ory/keto")
"ory/hydra" | "ory/kratos" | "ory/oathkeeper" | "ory/keto" | "ory/polis")
discussions=$repo_discussions
;;
*)
Expand Down
22 changes: 15 additions & 7 deletions templates/repository/common/PROJECTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,21 @@ OpenID Connect Provider which easily connects to any existing identity system by
writing a tiny "bridge" application. It gives absolute control over the user
interface and user experience flows.

### Ory Keto: Access Control Policies as a Server

[Ory Keto](https://github.com/ory/keto) is a policy decision point. It uses a
set of access control policies, similar to AWS IAM Policies, in order to
determine whether a subject (user, application, service, car, ...) is authorized
to perform a certain action on a resource.

### Ory Polis: Enterprise Single Sign-On (SSO)

[Ory Polis](https://github.com/ory/polis) is an Enterprise Single Sign-On (SSO)
service that bridges SAML and OIDC Identity Provider connections to an
OAuth2/OpenID Connect flow. It abstracts the complexities of SAML and OIDC
protocols and supports Directory Sync via SCIM 2.0 for user and group
provisioning.

### Ory Oathkeeper: Identity & Access Proxy

[Ory Oathkeeper](https://github.com/ory/oathkeeper) is a BeyondCorp/Zero Trust
Expand All @@ -39,11 +54,4 @@ Tokens, API Keys, mTLS; Check if the contained subject is allowed to perform the
request; Encode resulting content into custom headers (`X-User-ID`), JSON Web
Tokens and more!

### Ory Keto: Access Control Policies as a Server

[Ory Keto](https://github.com/ory/keto) is a policy decision point. It uses a
set of access control policies, similar to AWS IAM Policies, in order to
determine whether a subject (user, application, service, car, ...) is authorized
to perform a certain action on a resource.

<!--END ECOSYSTEM-->
Loading