Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mismithhisler committed Feb 4, 2025
1 parent 9015843 commit a41b5e6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions website/content/docs/concepts/acl/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,25 @@ Connect (OIDC)][oidc] SSO workflow which allows users to log in to Nomad via
applications such as [Auth0][auth0], [Okta][okta], and [Vault][vault], and
non-interactive login via externally-issued [JSON Web Tokens (JWT)][jwt].

Since both the `oidc` and `jwt` auth methods ultimately operate on JWTs as
bearer tokens, use the following to determine which method fits your use case:

- **JWT**

- Ideal for machine-oriented, headless login where an operator may have already
arranged for a valid JWT to be dropped on a VM or provided to a container.
- User or application performing the Nomad login must have a valid JWT
to begin login.
- Does not require browser interaction.

- **OIDC**

- Ideal for human-oriented, interactive login where an operator or administrator
may have deployed SSO widely and doesn't want to distribute Nomad ACL tokens
to every authorized user.
- User performing the Nomad login does not need a JWT.
- Requires browser interaction.

## Binding Rule

Binding rules provide a mapping between a Nomad user's SSO authorisation claims
Expand Down

0 comments on commit a41b5e6

Please sign in to comment.