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:
- Capability
Name string - Name of the capability. Must be unique within the cluster.
- Cluster
Name string - Name of the EKS cluster.
- Delete
Propagation stringPolicy - Delete propagation policy for the capability. Valid values:
RETAIN. - Role
Arn string - ARN of the IAM role to associate with the capability.
- Type string
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - Configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key-value map of resource tags.
- Timeouts
Capability
Timeouts
- Capability
Name string - Name of the capability. Must be unique within the cluster.
- Cluster
Name string - Name of the EKS cluster.
- Delete
Propagation stringPolicy - Delete propagation policy for the capability. Valid values:
RETAIN. - Role
Arn string - ARN of the IAM role to associate with the capability.
- Type string
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - Configuration
Capability
Configuration Args - Configuration for the capability. See
configurationbelow. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key-value map of resource tags.
- Timeouts
Capability
Timeouts Args
- capability
Name String - Name of the capability. Must be unique within the cluster.
- cluster
Name String - Name of the EKS cluster.
- delete
Propagation StringPolicy - Delete propagation policy for the capability. Valid values:
RETAIN. - role
Arn String - ARN of the IAM role to associate with the capability.
- type String
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key-value map of resource tags.
- timeouts
Capability
Timeouts
- capability
Name string - Name of the capability. Must be unique within the cluster.
- cluster
Name string - Name of the EKS cluster.
- delete
Propagation stringPolicy - Delete propagation policy for the capability. Valid values:
RETAIN. - role
Arn string - ARN of the IAM role to associate with the capability.
- type string
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key-value map of resource tags.
- timeouts
Capability
Timeouts
- capability_
name str - Name of the capability. Must be unique within the cluster.
- cluster_
name str - Name of the EKS cluster.
- delete_
propagation_ strpolicy - 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
Capability
Configuration Args - Configuration for the capability. See
configurationbelow. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key-value map of resource tags.
- timeouts
Capability
Timeouts Args
- capability
Name String - Name of the capability. Must be unique within the cluster.
- cluster
Name String - Name of the EKS cluster.
- delete
Propagation StringPolicy - Delete propagation policy for the capability. Valid values:
RETAIN. - role
Arn 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
configurationbelow. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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:
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) -> Capabilityfunc 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.
- Arn string
- ARN of the capability.
- Capability
Name string - Name of the capability. Must be unique within the cluster.
- Cluster
Name string - Name of the EKS cluster.
- Configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - Delete
Propagation stringPolicy - 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.
- Role
Arn string - ARN of the IAM role to associate with the capability.
- Dictionary<string, string>
- Key-value map of resource tags.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Capability
Timeouts - Type string
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - Version string
- Version of the capability.
- Arn string
- ARN of the capability.
- Capability
Name string - Name of the capability. Must be unique within the cluster.
- Cluster
Name string - Name of the EKS cluster.
- Configuration
Capability
Configuration Args - Configuration for the capability. See
configurationbelow. - Delete
Propagation stringPolicy - 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.
- Role
Arn string - ARN of the IAM role to associate with the capability.
- map[string]string
- Key-value map of resource tags.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - Timeouts
Capability
Timeouts Args - Type string
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - Version string
- Version of the capability.
- arn String
- ARN of the capability.
- capability
Name String - Name of the capability. Must be unique within the cluster.
- cluster
Name String - Name of the EKS cluster.
- configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - delete
Propagation StringPolicy - 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.
- role
Arn String - ARN of the IAM role to associate with the capability.
- Map<String,String>
- Key-value map of resource tags.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Capability
Timeouts - type String
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - version String
- Version of the capability.
- arn string
- ARN of the capability.
- capability
Name string - Name of the capability. Must be unique within the cluster.
- cluster
Name string - Name of the EKS cluster.
- configuration
Capability
Configuration - Configuration for the capability. See
configurationbelow. - delete
Propagation stringPolicy - 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.
- role
Arn string - ARN of the IAM role to associate with the capability.
- {[key: string]: string}
- Key-value map of resource tags.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Capability
Timeouts - 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
Capability
Configuration Args - Configuration for the capability. See
configurationbelow. - delete_
propagation_ strpolicy - 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.
- Mapping[str, str]
- Key-value map of resource tags.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration block. - timeouts
Capability
Timeouts Args - type str
- Type of the capability. Valid values:
ACK,KRO,ARGOCD. - version str
- Version of the capability.
- arn String
- ARN of the capability.
- capability
Name String - Name of the capability. Must be unique within the cluster.
- cluster
Name String - Name of the EKS cluster.
- configuration Property Map
- Configuration for the capability. See
configurationbelow. - delete
Propagation StringPolicy - 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.
- role
Arn String - ARN of the IAM role to associate with the capability.
- Map<String>
- Key-value map of resource tags.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tagsconfiguration 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
- Argo
Cd CapabilityConfiguration Argo Cd - ArgoCD configuration. See
argo_cdbelow.
- Argo
Cd CapabilityConfiguration Argo Cd - ArgoCD configuration. See
argo_cdbelow.
- argo
Cd CapabilityConfiguration Argo Cd - ArgoCD configuration. See
argo_cdbelow.
- argo
Cd CapabilityConfiguration Argo Cd - ArgoCD configuration. See
argo_cdbelow.
- argo_
cd CapabilityConfiguration Argo Cd - ArgoCD configuration. See
argo_cdbelow.
- argo
Cd Property Map - ArgoCD configuration. See
argo_cdbelow.
CapabilityConfigurationArgoCd, CapabilityConfigurationArgoCdArgs
- Aws
Idc CapabilityConfiguration Argo Cd Aws Idc - AWS IAM Identity Center configuration. See
aws_idcbelow. - Namespace string
- Kubernetes namespace for ArgoCD.
- Network
Access CapabilityConfiguration Argo Cd Network Access - Network access configuration. See
network_accessbelow. - Rbac
Role List<CapabilityMappings Configuration Argo Cd Rbac Role Mapping> - RBAC role mappings. See
rbac_role_mappingbelow. - Server
Url string - URL of the Argo CD server.
- Aws
Idc CapabilityConfiguration Argo Cd Aws Idc - AWS IAM Identity Center configuration. See
aws_idcbelow. - Namespace string
- Kubernetes namespace for ArgoCD.
- Network
Access CapabilityConfiguration Argo Cd Network Access - Network access configuration. See
network_accessbelow. - Rbac
Role []CapabilityMappings Configuration Argo Cd Rbac Role Mapping - RBAC role mappings. See
rbac_role_mappingbelow. - Server
Url string - URL of the Argo CD server.
- aws
Idc CapabilityConfiguration Argo Cd Aws Idc - AWS IAM Identity Center configuration. See
aws_idcbelow. - namespace String
- Kubernetes namespace for ArgoCD.
- network
Access CapabilityConfiguration Argo Cd Network Access - Network access configuration. See
network_accessbelow. - rbac
Role List<CapabilityMappings Configuration Argo Cd Rbac Role Mapping> - RBAC role mappings. See
rbac_role_mappingbelow. - server
Url String - URL of the Argo CD server.
- aws
Idc CapabilityConfiguration Argo Cd Aws Idc - AWS IAM Identity Center configuration. See
aws_idcbelow. - namespace string
- Kubernetes namespace for ArgoCD.
- network
Access CapabilityConfiguration Argo Cd Network Access - Network access configuration. See
network_accessbelow. - rbac
Role CapabilityMappings Configuration Argo Cd Rbac Role Mapping[] - RBAC role mappings. See
rbac_role_mappingbelow. - server
Url string - URL of the Argo CD server.
- aws_
idc CapabilityConfiguration Argo Cd Aws Idc - AWS IAM Identity Center configuration. See
aws_idcbelow. - namespace str
- Kubernetes namespace for ArgoCD.
- network_
access CapabilityConfiguration Argo Cd Network Access - Network access configuration. See
network_accessbelow. - rbac_
role_ Sequence[Capabilitymappings Configuration Argo Cd Rbac Role Mapping] - RBAC role mappings. See
rbac_role_mappingbelow. - server_
url str - URL of the Argo CD server.
- aws
Idc Property Map - AWS IAM Identity Center configuration. See
aws_idcbelow. - namespace String
- Kubernetes namespace for ArgoCD.
- network
Access Property Map - Network access configuration. See
network_accessbelow. - rbac
Role List<Property Map>Mappings - RBAC role mappings. See
rbac_role_mappingbelow. - server
Url String - URL of the Argo CD server.
CapabilityConfigurationArgoCdAwsIdc, CapabilityConfigurationArgoCdAwsIdcArgs
- Idc
Instance stringArn - ARN of the IAM Identity Center instance.
- Idc
Managed stringApplication Arn - Idc
Region string - Region of the IAM Identity Center instance.
- Idc
Instance stringArn - ARN of the IAM Identity Center instance.
- Idc
Managed stringApplication Arn - Idc
Region string - Region of the IAM Identity Center instance.
- idc
Instance StringArn - ARN of the IAM Identity Center instance.
- idc
Managed StringApplication Arn - idc
Region String - Region of the IAM Identity Center instance.
- idc
Instance stringArn - ARN of the IAM Identity Center instance.
- idc
Managed stringApplication Arn - idc
Region string - Region of the IAM Identity Center instance.
- idc_
instance_ strarn - ARN of the IAM Identity Center instance.
- idc_
managed_ strapplication_ arn - idc_
region str - Region of the IAM Identity Center instance.
- idc
Instance StringArn - ARN of the IAM Identity Center instance.
- idc
Managed StringApplication Arn - idc
Region String - Region of the IAM Identity Center instance.
CapabilityConfigurationArgoCdNetworkAccess, CapabilityConfigurationArgoCdNetworkAccessArgs
- Vpce
Ids List<string> - VPC Endpoint IDs.
- Vpce
Ids []string - VPC Endpoint IDs.
- vpce
Ids List<String> - VPC Endpoint IDs.
- vpce
Ids string[] - VPC Endpoint IDs.
- vpce_
ids Sequence[str] - VPC Endpoint IDs.
- vpce
Ids List<String> - VPC Endpoint IDs.
CapabilityConfigurationArgoCdRbacRoleMapping, CapabilityConfigurationArgoCdRbacRoleMappingArgs
- Role string
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - Identities
List<Capability
Configuration Argo Cd Rbac Role Mapping Identity> - List of identities. See
identitybelow.
- Role string
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - Identities
[]Capability
Configuration Argo Cd Rbac Role Mapping Identity - List of identities. See
identitybelow.
- role String
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - identities
List<Capability
Configuration Argo Cd Rbac Role Mapping Identity> - List of identities. See
identitybelow.
- role string
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - identities
Capability
Configuration Argo Cd Rbac Role Mapping Identity[] - List of identities. See
identitybelow.
- role str
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - identities
Sequence[Capability
Configuration Argo Cd Rbac Role Mapping Identity] - List of identities. See
identitybelow.
- role String
- ArgoCD role. Valid values:
ADMIN,EDITOR,VIEWER. - identities List<Property Map>
- List of identities. See
identitybelow.
CapabilityConfigurationArgoCdRbacRoleMappingIdentity, CapabilityConfigurationArgoCdRbacRoleMappingIdentityArgs
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
awsTerraform Provider.
