Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions packages/aws-cdk-lib/aws-iam/lib/oidc-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,23 @@ export interface OpenIdConnectProviderProps {
* requires access to AWS resources, but you don't want to create custom sign-in
* code or manage your own user identities.
*
* ⚠️ **IMPORTANT NOTICE FOR CONTRIBUTORS** ⚠️
*
* **DO NOT ADD NEW FEATURES TO THIS CONSTRUCT**
*
* This construct uses a custom resource with Lambda functions and is maintained
* for backward compatibility only. We cannot deprecate it due to its usage in
* existing services like EKS (see https://github.com/aws/aws-cdk/pull/28634#discussion_r1842962697).
*
* For new functionality, developers should use `OidcProviderNative` instead, which
* utilizes the native CloudFormation resource `AWS::IAM::OIDCProvider` and provides
* the same functionality with less complexity.
*
* If you are considering adding features to this construct, please:
* 1. Consider implementing the feature in `OidcProviderNative` instead
* 2. Discuss with the CDK team before proceeding
* 3. Ensure any changes maintain strict backward compatibility
*
* @see http://openid.net/connect
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc.html
*
Expand Down
Loading