Skip to main content

oidc_infos

Creates, updates, deletes, gets or lists an oidc_infos resource.

Overview

Nameoidc_infos
TypeResource
Idaws.wickr.oidc_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
openid_connect_infoobjectThe OpenID Connect configuration information for the network, including issuer, client ID, scopes, and other SSO settings.
token_infoobjectOAuth token information including access token, refresh token, and expiration details (only present if token parameters were provided in the request).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_oidc_infoselectnetwork_id, regionclientId, code, grantType, redirectUri, url, clientSecret, codeVerifier, certificateRetrieves the OpenID Connect (OIDC) configuration for a Wickr network, including SSO settings and optional token information if access token parameters are provided.

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.

NameDatatypeDescription
network_idstringThe ID of the Wickr network whose OIDC configuration will be retrieved.
regionstringAWS region (default: us-east-1)
certificatestringThe CA certificate for secure communication with the OIDC provider (optional).
clientIdstringThe OAuth client ID for retrieving access tokens (optional).
clientSecretstringThe OAuth client secret for retrieving access tokens (optional).
codestringThe authorization code for retrieving access tokens (optional).
codeVerifierstringThe PKCE code verifier for enhanced security in the OAuth flow (optional).
grantTypestringThe OAuth grant type for retrieving access tokens (optional).
redirectUristringThe redirect URI for the OAuth flow (optional).
urlstringThe URL for the OIDC provider (optional).

SELECT examples

Retrieves the OpenID Connect (OIDC) configuration for a Wickr network, including SSO settings and optional token information if access token parameters are provided.

SELECT
openid_connect_info,
token_info
FROM aws.wickr.oidc_infos
WHERE network_id = '{{ network_id }}' -- required
AND region = '{{ region }}' -- required
AND clientId = '{{ clientId }}'
AND code = '{{ code }}'
AND grantType = '{{ grantType }}'
AND redirectUri = '{{ redirectUri }}'
AND url = '{{ url }}'
AND clientSecret = '{{ clientSecret }}'
AND codeVerifier = '{{ codeVerifier }}'
AND certificate = '{{ certificate }}'
;