OIDC Provider
OIDC Provider provides tools for creating, listing, retrieving, and updating resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-oidc-provider-create | Create. |
f5xc-api-tenantandidentity-oidc-provider-get | GET. |
f5xc-api-tenantandidentity-oidc-provider-list | List. |
f5xc-api-tenantandidentity-oidc-provider-update | Replace. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace Supports only system namespace. | system |
name | Name Name of OIDC provider object. | example-resource |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
oidcproviderspec
Section titled “oidcproviderspec”| Option | Description | Recommended |
|---|---|---|
spec.azure_oidc_spec_type | Azure oidc spec type | |
spec.google_oidc_spec_type | Google oidc spec type | |
spec.oidc_v10_spec_type | Oidc v10 spec type | |
spec.okta_oidc_spec_type | Okta oidc spec type |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with OIDC Provider resources:
Create OIDC Provider
Section titled “Create OIDC Provider”“Create a oidc-provider named ‘example’ in the ‘production’ namespace”
List OIDC Providers
Section titled “List OIDC Providers”“List all oidc-providers in the ‘production’ namespace”
Get OIDC Provider Details
Section titled “Get OIDC Provider Details”“Get details of the oidc-provider named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/custom/namespaces/$${PARAM}/oidc_providers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/custom/namespaces/$${PARAM}/oidc_provider/$${PARAM}" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/web/custom/namespaces/$${PARAM}/oidc_providers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @oidc_provider.json