Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v17] Document the spec.github.static_jwks field of ProvisionToken #49811

Merged
merged 2 commits into from
Dec 5, 2024
Merged
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
10 changes: 10 additions & 0 deletions docs/pages/includes/provision-token/github-spec.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ spec:
# this value should be configured to the hostname of your GHES instance.
enterprise_server_host: ghes.example.com

# static_jwks allows the JSON Web Key Set (JWKS) used to verify the token
# issued by GitHub Actions to be overridden. This can be used in scenarios
# where the Teleport Auth Service is unable to reach a GHES server.
#
# This field is optional and should only be used with GitHub Enterprise
# Server. When unspecified, the JWKS will be fetched automatically using the
# GHES server specified in `enterprise_server_host`.
static_jwks: |
{"keys":[--snip--]}

# enterprise_slug allows the slug of a GitHub Enterprise organisation to be
# included in the expected issuer of the OIDC tokens. This is for
# compatibility with the include_enterprise_slug option in GHE.
Expand Down
Loading