1. Packages
  2. AWS
  3. API Docs
  4. eks
  5. Capability
AWS v7.14.0 published on Thursday, Dec 11, 2025 by Pulumi
aws logo
AWS v7.14.0 published on Thursday, Dec 11, 2025 by Pulumi

    Manages an EKS Capability for an EKS cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.eks.Capability("example", {
        clusterName: exampleAwsEksCluster.name,
        capabilityName: "argocd",
        type: "ARGOCD",
        roleArn: exampleAwsIamRole.arn,
        deletePropagationPolicy: "RETAIN",
        configuration: {
            argoCd: {
                awsIdc: {
                    idcInstanceArn: "arn:aws:sso:::instance/ssoins-1234567890abcdef0",
                },
                namespace: "argocd",
            },
        },
        tags: {
            Name: "example-capability",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.eks.Capability("example",
        cluster_name=example_aws_eks_cluster["name"],
        capability_name="argocd",
        type="ARGOCD",
        role_arn=example_aws_iam_role["arn"],
        delete_propagation_policy="RETAIN",
        configuration={
            "argo_cd": {
                "aws_idc": {
                    "idc_instance_arn": "arn:aws:sso:::instance/ssoins-1234567890abcdef0",
                },
                "namespace": "argocd",
            },
        },
        tags={
            "Name": "example-capability",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/eks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := eks.NewCapability(ctx, "example", &eks.CapabilityArgs{
    			ClusterName:             pulumi.Any(exampleAwsEksCluster.Name),
    			CapabilityName:          pulumi.String("argocd"),
    			Type:                    pulumi.String("ARGOCD"),
    			RoleArn:                 pulumi.Any(exampleAwsIamRole.Arn),
    			DeletePropagationPolicy: pulumi.String("RETAIN"),
    			Configuration: &eks.CapabilityConfigurationArgs{
    				ArgoCd: &eks.CapabilityConfigurationArgoCdArgs{
    					AwsIdc: &eks.CapabilityConfigurationArgoCdAwsIdcArgs{
    						IdcInstanceArn: pulumi.String("arn:aws:sso:::instance/ssoins-1234567890abcdef0"),
    					},
    					Namespace: pulumi.String("argocd"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Name": pulumi.String("example-capability"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Eks.Capability("example", new()
        {
            ClusterName = exampleAwsEksCluster.Name,
            CapabilityName = "argocd",
            Type = "ARGOCD",
            RoleArn = exampleAwsIamRole.Arn,
            DeletePropagationPolicy = "RETAIN",
            Configuration = new Aws.Eks.Inputs.CapabilityConfigurationArgs
            {
                ArgoCd = new Aws.Eks.Inputs.CapabilityConfigurationArgoCdArgs
                {
                    AwsIdc = new Aws.Eks.Inputs.CapabilityConfigurationArgoCdAwsIdcArgs
                    {
                        IdcInstanceArn = "arn:aws:sso:::instance/ssoins-1234567890abcdef0",
                    },
                    Namespace = "argocd",
                },
            },
            Tags = 
            {
                { "Name", "example-capability" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.eks.Capability;
    import com.pulumi.aws.eks.CapabilityArgs;
    import com.pulumi.aws.eks.inputs.CapabilityConfigurationArgs;
    import com.pulumi.aws.eks.inputs.CapabilityConfigurationArgoCdArgs;
    import com.pulumi.aws.eks.inputs.CapabilityConfigurationArgoCdAwsIdcArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Capability("example", CapabilityArgs.builder()
                .clusterName(exampleAwsEksCluster.name())
                .capabilityName("argocd")
                .type("ARGOCD")
                .roleArn(exampleAwsIamRole.arn())
                .deletePropagationPolicy("RETAIN")
                .configuration(CapabilityConfigurationArgs.builder()
                    .argoCd(CapabilityConfigurationArgoCdArgs.builder()
                        .awsIdc(CapabilityConfigurationArgoCdAwsIdcArgs.builder()
                            .idcInstanceArn("arn:aws:sso:::instance/ssoins-1234567890abcdef0")
                            .build())
                        .namespace("argocd")
                        .build())
                    .build())
                .tags(Map.of("Name", "example-capability"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:eks:Capability
        properties:
          clusterName: ${exampleAwsEksCluster.name}
          capabilityName: argocd
          type: ARGOCD
          roleArn: ${exampleAwsIamRole.arn}
          deletePropagationPolicy: RETAIN
          configuration:
            argoCd:
              awsIdc:
                idcInstanceArn: arn:aws:sso:::instance/ssoins-1234567890abcdef0
              namespace: argocd
          tags:
            Name: example-capability
    

    Create Capability Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Capability(name: string, args: CapabilityArgs, opts?: CustomResourceOptions);
    @overload
    def Capability(resource_name: str,
                   args: CapabilityArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Capability(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   capability_name: Optional[str] = None,
                   cluster_name: Optional[str] = None,
                   delete_propagation_policy: Optional[str] = None,
                   role_arn: Optional[str] = None,
                   type: Optional[str] = None,
                   configuration: Optional[CapabilityConfigurationArgs] = None,
                   region: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   timeouts: Optional[CapabilityTimeoutsArgs] = None)
    func NewCapability(ctx *Context, name string, args CapabilityArgs, opts ...ResourceOption) (*Capability, error)
    public Capability(string name, CapabilityArgs args, CustomResourceOptions? opts = null)
    public Capability(String name, CapabilityArgs args)
    public Capability(String name, CapabilityArgs args, CustomResourceOptions options)
    
    type: aws:eks:Capability
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CapabilityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CapabilityArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CapabilityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CapabilityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CapabilityArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var capabilityResource = new Aws.Eks.Capability("capabilityResource", new()
    {
        CapabilityName = "string",
        ClusterName = "string",
        DeletePropagationPolicy = "string",
        RoleArn = "string",
        Type = "string",
        Configuration = new Aws.Eks.Inputs.CapabilityConfigurationArgs
        {
            ArgoCd = new Aws.Eks.Inputs.CapabilityConfigurationArgoCdArgs
            {
                AwsIdc = new Aws.Eks.Inputs.CapabilityConfigurationArgoCdAwsIdcArgs
                {
                    IdcInstanceArn = "string",
                    IdcManagedApplicationArn = "string",
                    IdcRegion = "string",
                },
                Namespace = "string",
                NetworkAccess = new Aws.Eks.Inputs.CapabilityConfigurationArgoCdNetworkAccessArgs
                {
                    VpceIds = new[]
                    {
                        "string",
                    },
                },
                RbacRoleMappings = new[]
                {
                    new Aws.Eks.Inputs.CapabilityConfigurationArgoCdRbacRoleMappingArgs
                    {
                        Role = "string",
                        Identities = new[]
                        {
                            new Aws.Eks.Inputs.CapabilityConfigurationArgoCdRbacRoleMappingIdentityArgs
                            {
                                Id = "string",
                                Type = "string",
                            },
                        },
                    },
                },
                ServerUrl = "string",
            },
        },
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Eks.Inputs.CapabilityTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := eks.NewCapability(ctx, "capabilityResource", &eks.CapabilityArgs{
    	CapabilityName:          pulumi.String("string"),
    	ClusterName:             pulumi.String("string"),
    	DeletePropagationPolicy: pulumi.String("string"),
    	RoleArn:                 pulumi.String("string"),
    	Type:                    pulumi.String("string"),
    	Configuration: &eks.CapabilityConfigurationArgs{
    		ArgoCd: &eks.CapabilityConfigurationArgoCdArgs{
    			AwsIdc: &eks.CapabilityConfigurationArgoCdAwsIdcArgs{
    				IdcInstanceArn:           pulumi.String("string"),
    				IdcManagedApplicationArn: pulumi.String("string"),
    				IdcRegion:                pulumi.String("string"),
    			},
    			Namespace: pulumi.String("string"),
    			NetworkAccess: &eks.CapabilityConfigurationArgoCdNetworkAccessArgs{
    				VpceIds: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    			RbacRoleMappings: eks.CapabilityConfigurationArgoCdRbacRoleMappingArray{
    				&eks.CapabilityConfigurationArgoCdRbacRoleMappingArgs{
    					Role: pulumi.String("string"),
    					Identities: eks.CapabilityConfigurationArgoCdRbacRoleMappingIdentityArray{
    						&eks.CapabilityConfigurationArgoCdRbacRoleMappingIdentityArgs{
    							Id:   pulumi.String("string"),
    							Type: pulumi.String("string"),
    						},
    					},
    				},
    			},
    			ServerUrl: pulumi.String("string"),
    		},
    	},
    	Region: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &eks.CapabilityTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var capabilityResource = new Capability("capabilityResource", CapabilityArgs.builder()
        .capabilityName("string")
        .clusterName("string")
        .deletePropagationPolicy("string")
        .roleArn("string")
        .type("string")
        .configuration(CapabilityConfigurationArgs.builder()
            .argoCd(CapabilityConfigurationArgoCdArgs.builder()
                .awsIdc(CapabilityConfigurationArgoCdAwsIdcArgs.builder()
                    .idcInstanceArn("string")
                    .idcManagedApplicationArn("string")
                    .idcRegion("string")
                    .build())
                .namespace("string")
                .networkAccess(CapabilityConfigurationArgoCdNetworkAccessArgs.builder()
                    .vpceIds("string")
                    .build())
                .rbacRoleMappings(CapabilityConfigurationArgoCdRbacRoleMappingArgs.builder()
                    .role("string")
                    .identities(CapabilityConfigurationArgoCdRbacRoleMappingIdentityArgs.builder()
                        .id("string")
                        .type("string")
                        .build())
                    .build())
                .serverUrl("string")
                .build())
            .build())
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(CapabilityTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    capability_resource = aws.eks.Capability("capabilityResource",
        capability_name="string",
        cluster_name="string",
        delete_propagation_policy="string",
        role_arn="string",
        type="string",
        configuration={
            "argo_cd": {
                "aws_idc": {
                    "idc_instance_arn": "string",
                    "idc_managed_application_arn": "string",
                    "idc_region": "string",
                },
                "namespace": "string",
                "network_access": {
                    "vpce_ids": ["string"],
                },
                "rbac_role_mappings": [{
                    "role": "string",
                    "identities": [{
                        "id": "string",
                        "type": "string",
                    }],
                }],
                "server_url": "string",
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const capabilityResource = new aws.eks.Capability("capabilityResource", {
        capabilityName: "string",
        clusterName: "string",
        deletePropagationPolicy: "string",
        roleArn: "string",
        type: "string",
        configuration: {
            argoCd: {
                awsIdc: {
                    idcInstanceArn: "string",
                    idcManagedApplicationArn: "string",
                    idcRegion: "string",
                },
                namespace: "string",
                networkAccess: {
                    vpceIds: ["string"],
                },
                rbacRoleMappings: [{
                    role: "string",
                    identities: [{
                        id: "string",
                        type: "string",
                    }],
                }],
                serverUrl: "string",
            },
        },
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:eks:Capability
    properties:
        capabilityName: string
        clusterName: string
        configuration:
            argoCd:
                awsIdc:
                    idcInstanceArn: string
                    idcManagedApplicationArn: string
                    idcRegion: string
                namespace: string
                networkAccess:
                    vpceIds:
                        - string
                rbacRoleMappings:
                    - identities:
                        - id: string
                          type: string
                      role: string
                serverUrl: string
        deletePropagationPolicy: string
        region: string
        roleArn: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        type: string
    

    Capability Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Capability resource accepts the following input properties:

    CapabilityName string
    Name of the capability. Must be unique within the cluster.
    ClusterName string
    Name of the EKS cluster.
    DeletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    RoleArn string
    ARN of the IAM role to associate with the capability.
    Type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    Configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    Timeouts CapabilityTimeouts
    CapabilityName string
    Name of the capability. Must be unique within the cluster.
    ClusterName string
    Name of the EKS cluster.
    DeletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    RoleArn string
    ARN of the IAM role to associate with the capability.
    Type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    Configuration CapabilityConfigurationArgs
    Configuration for the capability. See configuration below.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Key-value map of resource tags.
    Timeouts CapabilityTimeoutsArgs
    capabilityName String
    Name of the capability. Must be unique within the cluster.
    clusterName String
    Name of the EKS cluster.
    deletePropagationPolicy String
    Delete propagation policy for the capability. Valid values: RETAIN.
    roleArn String
    ARN of the IAM role to associate with the capability.
    type String
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Key-value map of resource tags.
    timeouts CapabilityTimeouts
    capabilityName string
    Name of the capability. Must be unique within the cluster.
    clusterName string
    Name of the EKS cluster.
    deletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    roleArn string
    ARN of the IAM role to associate with the capability.
    type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Key-value map of resource tags.
    timeouts CapabilityTimeouts
    capability_name str
    Name of the capability. Must be unique within the cluster.
    cluster_name str
    Name of the EKS cluster.
    delete_propagation_policy str
    Delete propagation policy for the capability. Valid values: RETAIN.
    role_arn str
    ARN of the IAM role to associate with the capability.
    type str
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    configuration CapabilityConfigurationArgs
    Configuration for the capability. See configuration below.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Key-value map of resource tags.
    timeouts CapabilityTimeoutsArgs
    capabilityName String
    Name of the capability. Must be unique within the cluster.
    clusterName String
    Name of the EKS cluster.
    deletePropagationPolicy String
    Delete propagation policy for the capability. Valid values: RETAIN.
    roleArn String
    ARN of the IAM role to associate with the capability.
    type String
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    configuration Property Map
    Configuration for the capability. See configuration below.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Key-value map of resource tags.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Capability resource produces the following output properties:

    Arn string
    ARN of the capability.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Version string
    Version of the capability.
    Arn string
    ARN of the capability.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Version string
    Version of the capability.
    arn String
    ARN of the capability.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    version String
    Version of the capability.
    arn string
    ARN of the capability.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    version string
    Version of the capability.
    arn str
    ARN of the capability.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    version str
    Version of the capability.
    arn String
    ARN of the capability.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    version String
    Version of the capability.

    Look up Existing Capability Resource

    Get an existing Capability resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CapabilityState, opts?: CustomResourceOptions): Capability
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            capability_name: Optional[str] = None,
            cluster_name: Optional[str] = None,
            configuration: Optional[CapabilityConfigurationArgs] = None,
            delete_propagation_policy: Optional[str] = None,
            region: Optional[str] = None,
            role_arn: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[CapabilityTimeoutsArgs] = None,
            type: Optional[str] = None,
            version: Optional[str] = None) -> Capability
    func GetCapability(ctx *Context, name string, id IDInput, state *CapabilityState, opts ...ResourceOption) (*Capability, error)
    public static Capability Get(string name, Input<string> id, CapabilityState? state, CustomResourceOptions? opts = null)
    public static Capability get(String name, Output<String> id, CapabilityState state, CustomResourceOptions options)
    resources:  _:    type: aws:eks:Capability    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN of the capability.
    CapabilityName string
    Name of the capability. Must be unique within the cluster.
    ClusterName string
    Name of the EKS cluster.
    Configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    DeletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    RoleArn string
    ARN of the IAM role to associate with the capability.
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts CapabilityTimeouts
    Type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    Version string
    Version of the capability.
    Arn string
    ARN of the capability.
    CapabilityName string
    Name of the capability. Must be unique within the cluster.
    ClusterName string
    Name of the EKS cluster.
    Configuration CapabilityConfigurationArgs
    Configuration for the capability. See configuration below.
    DeletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    RoleArn string
    ARN of the IAM role to associate with the capability.
    Tags map[string]string
    Key-value map of resource tags.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts CapabilityTimeoutsArgs
    Type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    Version string
    Version of the capability.
    arn String
    ARN of the capability.
    capabilityName String
    Name of the capability. Must be unique within the cluster.
    clusterName String
    Name of the EKS cluster.
    configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    deletePropagationPolicy String
    Delete propagation policy for the capability. Valid values: RETAIN.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn String
    ARN of the IAM role to associate with the capability.
    tags Map<String,String>
    Key-value map of resource tags.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts CapabilityTimeouts
    type String
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    version String
    Version of the capability.
    arn string
    ARN of the capability.
    capabilityName string
    Name of the capability. Must be unique within the cluster.
    clusterName string
    Name of the EKS cluster.
    configuration CapabilityConfiguration
    Configuration for the capability. See configuration below.
    deletePropagationPolicy string
    Delete propagation policy for the capability. Valid values: RETAIN.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn string
    ARN of the IAM role to associate with the capability.
    tags {[key: string]: string}
    Key-value map of resource tags.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts CapabilityTimeouts
    type string
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    version string
    Version of the capability.
    arn str
    ARN of the capability.
    capability_name str
    Name of the capability. Must be unique within the cluster.
    cluster_name str
    Name of the EKS cluster.
    configuration CapabilityConfigurationArgs
    Configuration for the capability. See configuration below.
    delete_propagation_policy str
    Delete propagation policy for the capability. Valid values: RETAIN.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    role_arn str
    ARN of the IAM role to associate with the capability.
    tags Mapping[str, str]
    Key-value map of resource tags.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts CapabilityTimeoutsArgs
    type str
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    version str
    Version of the capability.
    arn String
    ARN of the capability.
    capabilityName String
    Name of the capability. Must be unique within the cluster.
    clusterName String
    Name of the EKS cluster.
    configuration Property Map
    Configuration for the capability. See configuration below.
    deletePropagationPolicy String
    Delete propagation policy for the capability. Valid values: RETAIN.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    roleArn String
    ARN of the IAM role to associate with the capability.
    tags Map<String>
    Key-value map of resource tags.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts Property Map
    type String
    Type of the capability. Valid values: ACK, KRO, ARGOCD.
    version String
    Version of the capability.

    Supporting Types

    CapabilityConfiguration, CapabilityConfigurationArgs

    ArgoCd CapabilityConfigurationArgoCd
    ArgoCD configuration. See argo_cd below.
    ArgoCd CapabilityConfigurationArgoCd
    ArgoCD configuration. See argo_cd below.
    argoCd CapabilityConfigurationArgoCd
    ArgoCD configuration. See argo_cd below.
    argoCd CapabilityConfigurationArgoCd
    ArgoCD configuration. See argo_cd below.
    argo_cd CapabilityConfigurationArgoCd
    ArgoCD configuration. See argo_cd below.
    argoCd Property Map
    ArgoCD configuration. See argo_cd below.

    CapabilityConfigurationArgoCd, CapabilityConfigurationArgoCdArgs

    AwsIdc CapabilityConfigurationArgoCdAwsIdc
    AWS IAM Identity Center configuration. See aws_idc below.
    Namespace string
    Kubernetes namespace for ArgoCD.
    NetworkAccess CapabilityConfigurationArgoCdNetworkAccess
    Network access configuration. See network_access below.
    RbacRoleMappings List<CapabilityConfigurationArgoCdRbacRoleMapping>
    RBAC role mappings. See rbac_role_mapping below.
    ServerUrl string
    URL of the Argo CD server.
    AwsIdc CapabilityConfigurationArgoCdAwsIdc
    AWS IAM Identity Center configuration. See aws_idc below.
    Namespace string
    Kubernetes namespace for ArgoCD.
    NetworkAccess CapabilityConfigurationArgoCdNetworkAccess
    Network access configuration. See network_access below.
    RbacRoleMappings []CapabilityConfigurationArgoCdRbacRoleMapping
    RBAC role mappings. See rbac_role_mapping below.
    ServerUrl string
    URL of the Argo CD server.
    awsIdc CapabilityConfigurationArgoCdAwsIdc
    AWS IAM Identity Center configuration. See aws_idc below.
    namespace String
    Kubernetes namespace for ArgoCD.
    networkAccess CapabilityConfigurationArgoCdNetworkAccess
    Network access configuration. See network_access below.
    rbacRoleMappings List<CapabilityConfigurationArgoCdRbacRoleMapping>
    RBAC role mappings. See rbac_role_mapping below.
    serverUrl String
    URL of the Argo CD server.
    awsIdc CapabilityConfigurationArgoCdAwsIdc
    AWS IAM Identity Center configuration. See aws_idc below.
    namespace string
    Kubernetes namespace for ArgoCD.
    networkAccess CapabilityConfigurationArgoCdNetworkAccess
    Network access configuration. See network_access below.
    rbacRoleMappings CapabilityConfigurationArgoCdRbacRoleMapping[]
    RBAC role mappings. See rbac_role_mapping below.
    serverUrl string
    URL of the Argo CD server.
    aws_idc CapabilityConfigurationArgoCdAwsIdc
    AWS IAM Identity Center configuration. See aws_idc below.
    namespace str
    Kubernetes namespace for ArgoCD.
    network_access CapabilityConfigurationArgoCdNetworkAccess
    Network access configuration. See network_access below.
    rbac_role_mappings Sequence[CapabilityConfigurationArgoCdRbacRoleMapping]
    RBAC role mappings. See rbac_role_mapping below.
    server_url str
    URL of the Argo CD server.
    awsIdc Property Map
    AWS IAM Identity Center configuration. See aws_idc below.
    namespace String
    Kubernetes namespace for ArgoCD.
    networkAccess Property Map
    Network access configuration. See network_access below.
    rbacRoleMappings List<Property Map>
    RBAC role mappings. See rbac_role_mapping below.
    serverUrl String
    URL of the Argo CD server.

    CapabilityConfigurationArgoCdAwsIdc, CapabilityConfigurationArgoCdAwsIdcArgs

    IdcInstanceArn string
    ARN of the IAM Identity Center instance.
    IdcManagedApplicationArn string
    IdcRegion string
    Region of the IAM Identity Center instance.
    IdcInstanceArn string
    ARN of the IAM Identity Center instance.
    IdcManagedApplicationArn string
    IdcRegion string
    Region of the IAM Identity Center instance.
    idcInstanceArn String
    ARN of the IAM Identity Center instance.
    idcManagedApplicationArn String
    idcRegion String
    Region of the IAM Identity Center instance.
    idcInstanceArn string
    ARN of the IAM Identity Center instance.
    idcManagedApplicationArn string
    idcRegion string
    Region of the IAM Identity Center instance.
    idc_instance_arn str
    ARN of the IAM Identity Center instance.
    idc_managed_application_arn str
    idc_region str
    Region of the IAM Identity Center instance.
    idcInstanceArn String
    ARN of the IAM Identity Center instance.
    idcManagedApplicationArn String
    idcRegion String
    Region of the IAM Identity Center instance.

    CapabilityConfigurationArgoCdNetworkAccess, CapabilityConfigurationArgoCdNetworkAccessArgs

    VpceIds List<string>
    VPC Endpoint IDs.
    VpceIds []string
    VPC Endpoint IDs.
    vpceIds List<String>
    VPC Endpoint IDs.
    vpceIds string[]
    VPC Endpoint IDs.
    vpce_ids Sequence[str]
    VPC Endpoint IDs.
    vpceIds List<String>
    VPC Endpoint IDs.

    CapabilityConfigurationArgoCdRbacRoleMapping, CapabilityConfigurationArgoCdRbacRoleMappingArgs

    Role string
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    Identities List<CapabilityConfigurationArgoCdRbacRoleMappingIdentity>
    List of identities. See identity below.
    Role string
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    Identities []CapabilityConfigurationArgoCdRbacRoleMappingIdentity
    List of identities. See identity below.
    role String
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    identities List<CapabilityConfigurationArgoCdRbacRoleMappingIdentity>
    List of identities. See identity below.
    role string
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    identities CapabilityConfigurationArgoCdRbacRoleMappingIdentity[]
    List of identities. See identity below.
    role str
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    identities Sequence[CapabilityConfigurationArgoCdRbacRoleMappingIdentity]
    List of identities. See identity below.
    role String
    ArgoCD role. Valid values: ADMIN, EDITOR, VIEWER.
    identities List<Property Map>
    List of identities. See identity below.

    CapabilityConfigurationArgoCdRbacRoleMappingIdentity, CapabilityConfigurationArgoCdRbacRoleMappingIdentityArgs

    Id string
    Identity ID.
    Type string
    Identity type. Valid values: SSO_USER, SSO_GROUP.
    Id string
    Identity ID.
    Type string
    Identity type. Valid values: SSO_USER, SSO_GROUP.
    id String
    Identity ID.
    type String
    Identity type. Valid values: SSO_USER, SSO_GROUP.
    id string
    Identity ID.
    type string
    Identity type. Valid values: SSO_USER, SSO_GROUP.
    id str
    Identity ID.
    type str
    Identity type. Valid values: SSO_USER, SSO_GROUP.
    id String
    Identity ID.
    type String
    Identity type. Valid values: SSO_USER, SSO_GROUP.

    CapabilityTimeouts, CapabilityTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import EKS Capability using the cluster_name and capability_name separated by a comma (,). For example:

    $ pulumi import aws:eks/capability:Capability example my-cluster,my-capability
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v7.14.0 published on Thursday, Dec 11, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate