Skip to main content

well_known_openid_configuration

Creates, updates, deletes, gets or lists a well_known_openid_configuration resource.

Overview

Namewell_known_openid_configuration
TypeResource
Idgoogle.container.well_known_openid_configuration

Fields

NameDatatypeDescription
cacheHeaderobjectRFC-2616: cache control support
claims_supportedarraySupported claims.
grant_typesarraySupported grant types.
id_token_signing_alg_values_supportedarraysupported ID Token signing Algorithms.
issuerstringOIDC Issuer.
jwks_uristringJSON Web Key uri.
response_types_supportedarraySupported response types.
subject_types_supportedarraySupported subject types.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_clusters_well-known_get_openid-configurationSELECTclustersId, locationsId, projectsIdGets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.

SELECT examples

Gets the OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.

SELECT
cacheHeader,
claims_supported,
grant_types,
id_token_signing_alg_values_supported,
issuer,
jwks_uri,
response_types_supported,
subject_types_supported
FROM google.container.well_known_openid_configuration
WHERE clustersId = '{{ clustersId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';