Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
xazhao committed Dec 11, 2024
1 parent ac7582b commit 1fc5fda
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions packages/@aws-cdk/aws-eks-v2-alpha/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1fc5fda

Please sign in to comment.