interface AwsIdcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCapability.AwsIdcProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCapability_AwsIdcProperty |
Java | software.amazon.awscdk.services.eks.CfnCapability.AwsIdcProperty |
Python | aws_cdk.aws_eks.CfnCapability.AwsIdcProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCapability » AwsIdcProperty |
Configuration for integrating Argo CD with IAM Identity Center.
This allows you to use your organization's identity provider for authentication to Argo CD.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from 'aws-cdk-lib';
const awsIdcProperty: eks.CfnCapability.AwsIdcProperty = {
idcInstanceArn: 'idcInstanceArn',
// the properties below are optional
idcManagedApplicationArn: 'idcManagedApplicationArn',
idcRegion: 'idcRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| idc | string | The ARN of the IAM Identity Center instance to use for authentication. |
| idc | string | The ARN of the managed application created in IAM Identity Center for this Argo CD capability. |
| idc | string | The Region where your IAM Identity Center instance is located. |
idcInstanceArn
Type:
string
The ARN of the IAM Identity Center instance to use for authentication.
idcManagedApplicationArn?
Type:
string
(optional)
The ARN of the managed application created in IAM Identity Center for this Argo CD capability.
This application is automatically created and managed by EKS.
idcRegion?
Type:
string
(optional)
The Region where your IAM Identity Center instance is located.

.NET
Go
Java
Python
TypeScript