diff --git a/packages/@aws-cdk/aws-eks-v2-alpha/lib/cluster.ts b/packages/@aws-cdk/aws-eks-v2-alpha/lib/cluster.ts index 8462c0f2b0f46..f0e876173a19f 100644 --- a/packages/@aws-cdk/aws-eks-v2-alpha/lib/cluster.ts +++ b/packages/@aws-cdk/aws-eks-v2-alpha/lib/cluster.ts @@ -1896,24 +1896,13 @@ export class Cluster extends ClusterBase { return this._awsAuth; } - /** - * If this cluster is kubectl-enabled, returns the OpenID Connect issuer url. - * This is because the values is only be retrieved by the API and not exposed - * by CloudFormation. If this cluster is not kubectl-enabled (i.e. uses the - * stock `CfnCluster`), this is `undefined`. - * @attribute - */ - public get clusterOpenIdConnectIssuerUrl(): string { - return this._clusterResource.attrOpenIdConnectIssuerUrl; - } - /** * If this cluster is kubectl-enabled, returns the OpenID Connect issuer url. * If this cluster is not kubectl-enabled (i.e. uses the * stock `CfnCluster`), this is `undefined`. * @attribute */ - public get clusterOpenIdConnectIssuer(): string { + public get clusterOpenIdConnectIssuerUrl(): string { return this._clusterResource.attrOpenIdConnectIssuerUrl; }