IdentityProvidersOauth2CreateSpec
The Providers.Oauth2CreateSpec structure contains the information used to create an OAuth2 identity provider.
Properties
Authentication/authorization endpoint of the provider
key/value pairs that are to be appended to the authEndpoint request.
How to append to authEndpoint request: If the map is not empty, a “?” is added to the endpoint URL, and combination of each k and each string in the v is added with an “&” delimiter. Details: - If the value contains only one string, then the key is added with “k=v”. - If the value is an empty list, then the key is added without a “=v”. - If the value contains multiple strings, then the key is repeated in the query-string for each string in the value.
If unset, the map will be empty.
Authentication method used by the provider
The map used to transform an OAuth2 claim to a corresponding claim that vCenter Server understands. Currently only the key “perms” is supported. The key “perms” is used for mapping the “perms” claim of incoming JWT. The value is another map with an external group as the key and a vCenter Server group as value.
Client identifier to connect to the provider
The secret shared between the client and the provider
The identity provider namespace. It is used to validate the issuer in the acquired OAuth2 token.
Endpoint to retrieve the provider public key for validation
Token endpoint of the provider
JSON Example
{
"auth_endpoint": "string",
"authentication_method": "enum",
"client_id": "string",
"client_secret": "string",
"issuer": "string",
"public_key_uri": "string",
"token_endpoint": "string"
}