Optional ReadonlyalbInstall the AWS Load Balancer Controller onto the cluster.
Optional ReadonlyauthenticationThe desired authentication mode for the cluster.
OptionalautoscalingArray of autoscaling node groups.
Optional ReadonlyawscliAn AWS Lambda layer that contains the aws CLI.
The handler expects the layer to include the following executables:
/opt/awscli/aws
Optional ReadonlyclusterCustom environment variables when interacting with the EKS endpoint to manage the cluster lifecycle.
Optional ReadonlyclusterA security group to associate with the Cluster Handler's Lambdas. The Cluster Handler's Lambdas are responsible for calling AWS's EKS API.
Requires placeClusterHandlerInVpc to be set to true.
Optional ReadonlyclusterThe cluster log types which you want to enable.
Optional ReadonlyclusterName for the cluster.
Optional ReadonlycoreControls the "eks.amazonaws.com/compute-type" annotation in the CoreDNS configuration on your cluster to determine which compute type to use for CoreDNS.
Optional ReadonlyendpointConfigure access to the Kubernetes API server endpoint..
OptionalfargateFargate profiles
Optional ReadonlyipSpecify which IP family is used to assign Kubernetes pod and service IP addresses.
OptionalisolatedWhether cluster has internet access.
Optional ReadonlykubectlEnvironment variables for the kubectl execution. Only relevant for kubectl enabled clusters.
Optional ReadonlykubectlAn AWS Lambda Layer which includes kubectl and Helm.
This layer is used by the kubectl handler to apply manifests and install
helm charts. You must pick an appropriate releases of one of the
@aws-cdk/layer-kubectl-vXX packages, that works with the version of
Kubernetes you have chosen.
The handler expects the layer to include the following executables:
/opt/helm/helm
/opt/kubectl/kubectl
Optional ReadonlykubectlAmount of memory to allocate to the provider's lambda function.
OptionalmanagedArray of managed node groups.
Optional ReadonlymastersAn IAM role that will be added to the system:masters Kubernetes RBAC
group.
Optional ReadonlyonAn AWS Lambda Layer which includes the NPM dependency proxy-agent. This layer
is used by the onEvent handler to route AWS SDK requests through a proxy.
By default, the provider will use the layer included in the "aws-lambda-layer-node-proxy-agent" SAR application which is available in all commercial regions.
To deploy the layer locally define it in your app as follows:
const layer = new lambda.LayerVersion(this, 'proxy-agent-layer', {
code: lambda.Code.fromAsset(`${__dirname}/layer.zip`),
compatibleRuntimes: [lambda.Runtime.NODEJS_LATEST],
});
Optional ReadonlyoutputDetermines whether a CloudFormation output with the name of the cluster will be synthesized.
Optional ReadonlyoutputDetermines whether a CloudFormation output with the aws eks update-kubeconfig command will be synthesized. This command will include
the cluster name and the ARN of the masters IAM role.
Note: If mastersRole is not specified, this property will be ignored and no config command will be emitted.
Optional ReadonlyoutputDetermines whether a CloudFormation output with the ARN of the "masters"
IAM role will be synthesized (if mastersRole is specified).
Optional ReadonlyplaceIf set to true, the cluster handler functions will be placed in the private subnets
of the cluster vpc, subject to the vpcSubnets selection strategy.
OptionalprivateWhether API server is private.
Optional ReadonlypruneIndicates whether Kubernetes resources added through addManifest() can be
automatically pruned. When this is enabled (default), prune labels will be
allocated and injected to each resource. These labels will then be used
when issuing the kubectl apply operation with the --prune switch.
Optional ReadonlyremoteIPv4 CIDR blocks defining the expected address range of hybrid nodes that will join the cluster.
Optional ReadonlyremoteIPv4 CIDR blocks for Pods running Kubernetes webhooks on hybrid nodes.
Optional ReadonlyroleRole that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
Optional ReadonlysecretsKMS secret for envelope encryption for Kubernetes secrets.
Optional ReadonlysecuritySecurity Group to use for Control Plane ENIs
Optional ReadonlyserviceThe CIDR block to assign Kubernetes service IP addresses from.
OptionaltagsTags for the cluster
Optional ReadonlyversionThe Kubernetes version to run in the cluster
Optional ReadonlyvpcThe VPC in which to create the Cluster.
Optional ReadonlyvpcWhere to place EKS Control Plane ENIs
For example, to only select private subnets, supply the following:
vpcSubnets: [{ subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS }]
Properties for the generic cluster provider, containing definitions of managed node groups, auto-scaling groups, fargate profiles.