This command creates an OIDC provider.
Usage
oidc create --name NAME --discovery-url URL [--user-jwt-attribute ATTRIBUTE] [--enable-verify-peer] [--disable-verify-peer] [--certificate]
Required Parameters
| Specifies NAME as the name of the OIDC provider. |
| Specifies the discovery URL for the OIDC provider. The URL points to a JSON file containing configuration information about the provider. |
Options
| Specifies ATTRIBUTE as the the JWT user identifier field in audit logs. Examples: |
| Requires certificate verification of OIDC provider (peer). The provider is only trusted to handle requests after the certificate is verified. Uses the certificate in the |
| Disables requirement for certificate verification of the provider. The provider is trusted without certificate verification. |
| Specifies CERTIFICATE as the certificate for the OIDC provider, as a string. |
Example
This example creates an OIDC provider named "oidc-for-vast".
vcli: admin> oidc create --name oidc-for-vast --discovery-url "https://myoidc.com/discovery.json"