connection_jwks
Creates, updates, deletes, gets or lists a connection_jwks
resource.
Overview
Name | connection_jwks |
Type | Resource |
Id | okta.apps.connection_jwks |
Fields
The following fields are returned by SELECT
queries:
- get_user_provisioning_connection_jwks
Name | Datatype | Description |
---|---|---|
jwks | object |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_user_provisioning_connection_jwks | select | subdomain | Retrieves a JWKS for the default provisioning connection. This can be used by the OAuth 2.0 app's jwk_uri property in the target org. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
subdomain | string | The domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org) |
SELECT
examples
- get_user_provisioning_connection_jwks
Retrieves a JWKS for the default provisioning connection. This can be used by the OAuth 2.0 app's jwk_uri
property in the target org.
SELECT
jwks
FROM okta.apps.connection_jwks
WHERE subdomain = '{{ subdomain }}' -- required;