feat: RFC 8705 mutual-TLS client authentication — BOSH release changes#1269
Draft
rkoster wants to merge 9 commits into
Draft
feat: RFC 8705 mutual-TLS client authentication — BOSH release changes#1269rkoster wants to merge 9 commits into
rkoster wants to merge 9 commits into
Conversation
…lients Clients using certificate-based or JWT-based authentication do not have a client_secret. The template previously only exempted 'implicit' grant type from the secret-required check; extend the exemption to token-endpoint-auth-method tls_client_auth and private_key_jwt.
Update UAA submodule to include the RFC 8705 mTLS implementation. The submodule now points to the tip of the feat/rfc8705-mtls-client-auth branch in cloudfoundry/uaa, which adds mutual-TLS client authentication support for /oauth/mtls/token.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
BOSH release changes to support RFC 8705
mutual-TLS client authentication for Cloud Foundry app instance identity.
Companion to cloudfoundry/uaa#3972.
Changes (3 commits)
jobs/uaa/spec— new properties:uaa.mtls.enabled(boolean, defaultfalse) — enables the/oauth/mtls/tokenendpointuaa.mtls.endpoint(string) — the full mTLS endpoint URL published in OIDC discoveryjobs/uaa/templates/config/uaa.yml.erb:mtls:block whenuaa.mtls.enabledis trueclientSecretvalidation fortls_client_authandprivate_key_jwtclients(these authenticate via cert/JWT rather than a shared secret)
src/uaasubmodule — bumped tofeat/rfc8705-mtls-client-auth(cloudfoundry/uaa#3972)Ops file usage
Gorouter requirement
Related