interface OpenIdConnectProviderProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Eks.V2.Alpha.OpenIdConnectProviderProps |
![]() | github.com/aws/aws-cdk-go/awscdkeks-v2alpha/v2#OpenIdConnectProviderProps |
![]() | software.amazon.awscdk.services.eks.v2.alpha.OpenIdConnectProviderProps |
![]() | aws_cdk.aws_eks_v2_alpha.OpenIdConnectProviderProps |
![]() | @aws-cdk/aws-eks-v2-alpha » OpenIdConnectProviderProps |
Initialization properties for OpenIdConnectProvider
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks_v2_alpha from '@aws-cdk/aws-eks-v2-alpha';
const openIdConnectProviderProps: eks_v2_alpha.OpenIdConnectProviderProps = {
url: 'url',
};
Properties
Name | Type | Description |
---|---|---|
url | string | The URL of the identity provider. |
url
Type:
string
The URL of the identity provider.
The URL must begin with https:// and should correspond to the iss claim in the provider's OpenID Connect ID tokens. Per the OIDC standard, path components are allowed but query parameters are not. Typically the URL consists of only a hostname, like https://server.example.org or https://example.com.
You can find your OIDC Issuer URL by: aws eks describe-cluster --name %cluster_name% --query "cluster.identity.oidc.issuer" --output text