

This is the new *CloudFormation Template Reference Guide*. Please update your bookmarks and links. For help getting started with CloudFormation, see the [AWS CloudFormation User Guide](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html).

# AWS::EKS::Nodegroup
<a name="aws-resource-eks-nodegroup"></a>

Creates a managed node group for an Amazon EKS cluster.

You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template.

For later updates, you will only be able to update a node group using a launch template only if it was originally deployed with a launch template. Additionally, the launch template ID or name must match what was used when the node group was created. You can update the launch template version with necessary changes. For more information about using launch templates, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html).

An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by AWS for an Amazon EKS cluster. For more information, see [Managed node groups](https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html) in the *Amazon EKS User Guide*.

**Note**  
Windows AMI types are only supported for commercial AWS Regions that support Windows on Amazon EKS.

## Syntax
<a name="aws-resource-eks-nodegroup-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-resource-eks-nodegroup-syntax.json"></a>

```
{
  "Type" : "AWS::EKS::Nodegroup",
  "Properties" : {
      "[AmiType](#cfn-eks-nodegroup-amitype)" : String,
      "[CapacityType](#cfn-eks-nodegroup-capacitytype)" : String,
      "[ClusterName](#cfn-eks-nodegroup-clustername)" : String,
      "[DiskSize](#cfn-eks-nodegroup-disksize)" : Integer,
      "[ForceUpdateEnabled](#cfn-eks-nodegroup-forceupdateenabled)" : Boolean,
      "[InstanceTypes](#cfn-eks-nodegroup-instancetypes)" : [ String, ... ],
      "[Labels](#cfn-eks-nodegroup-labels)" : {Key: Value, ...},
      "[LaunchTemplate](#cfn-eks-nodegroup-launchtemplate)" : LaunchTemplateSpecification,
      "[NodegroupName](#cfn-eks-nodegroup-nodegroupname)" : String,
      "[NodeRepairConfig](#cfn-eks-nodegroup-noderepairconfig)" : NodeRepairConfig,
      "[NodeRole](#cfn-eks-nodegroup-noderole)" : String,
      "[ReleaseVersion](#cfn-eks-nodegroup-releaseversion)" : String,
      "[RemoteAccess](#cfn-eks-nodegroup-remoteaccess)" : RemoteAccess,
      "[ScalingConfig](#cfn-eks-nodegroup-scalingconfig)" : ScalingConfig,
      "[Subnets](#cfn-eks-nodegroup-subnets)" : [ String, ... ],
      "[Tags](#cfn-eks-nodegroup-tags)" : {Key: Value, ...},
      "[Taints](#cfn-eks-nodegroup-taints)" : [ Taint, ... ],
      "[UpdateConfig](#cfn-eks-nodegroup-updateconfig)" : UpdateConfig,
      "[Version](#cfn-eks-nodegroup-version)" : String,
      "[WarmPoolConfig](#cfn-eks-nodegroup-warmpoolconfig)" : WarmPoolConfig
    }
}
```

### YAML
<a name="aws-resource-eks-nodegroup-syntax.yaml"></a>

```
Type: AWS::EKS::Nodegroup
Properties:
  [AmiType](#cfn-eks-nodegroup-amitype): String
  [CapacityType](#cfn-eks-nodegroup-capacitytype): String
  [ClusterName](#cfn-eks-nodegroup-clustername): String
  [DiskSize](#cfn-eks-nodegroup-disksize): Integer
  [ForceUpdateEnabled](#cfn-eks-nodegroup-forceupdateenabled): Boolean
  [InstanceTypes](#cfn-eks-nodegroup-instancetypes): 
    - String
  [Labels](#cfn-eks-nodegroup-labels): 
    Key: Value
  [LaunchTemplate](#cfn-eks-nodegroup-launchtemplate): 
    LaunchTemplateSpecification
  [NodegroupName](#cfn-eks-nodegroup-nodegroupname): String
  [NodeRepairConfig](#cfn-eks-nodegroup-noderepairconfig): 
    NodeRepairConfig
  [NodeRole](#cfn-eks-nodegroup-noderole): String
  [ReleaseVersion](#cfn-eks-nodegroup-releaseversion): String
  [RemoteAccess](#cfn-eks-nodegroup-remoteaccess): 
    RemoteAccess
  [ScalingConfig](#cfn-eks-nodegroup-scalingconfig): 
    ScalingConfig
  [Subnets](#cfn-eks-nodegroup-subnets): 
    - String
  [Tags](#cfn-eks-nodegroup-tags): 
    Key: Value
  [Taints](#cfn-eks-nodegroup-taints): 
    - Taint
  [UpdateConfig](#cfn-eks-nodegroup-updateconfig): 
    UpdateConfig
  [Version](#cfn-eks-nodegroup-version): String
  [WarmPoolConfig](#cfn-eks-nodegroup-warmpoolconfig): 
    WarmPoolConfig
```

## Properties
<a name="aws-resource-eks-nodegroup-properties"></a>

`AmiType`  <a name="cfn-eks-nodegroup-amitype"></a>
The AMI type for your node group. If you specify `launchTemplate`, and your launch template uses a custom AMI, then don't specify `amiType`, or the node group deployment will fail. If your launch template uses a Windows custom AMI, then add `eks:kube-proxy-windows` to your Windows nodes `rolearn` in the `aws-auth``ConfigMap`. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: String  
*Allowed values*: `AL2_x86_64 | AL2_x86_64_GPU | AL2_ARM_64 | CUSTOM | BOTTLEROCKET_ARM_64 | BOTTLEROCKET_x86_64 | BOTTLEROCKET_ARM_64_FIPS | BOTTLEROCKET_x86_64_FIPS | BOTTLEROCKET_ARM_64_NVIDIA | BOTTLEROCKET_x86_64_NVIDIA | BOTTLEROCKET_ARM_64_NVIDIA_FIPS | BOTTLEROCKET_x86_64_NVIDIA_FIPS | WINDOWS_CORE_2019_x86_64 | WINDOWS_FULL_2019_x86_64 | WINDOWS_CORE_2022_x86_64 | WINDOWS_FULL_2022_x86_64 | WINDOWS_CORE_2025_x86_64 | WINDOWS_FULL_2025_x86_64 | AL2023_x86_64_STANDARD | AL2023_ARM_64_STANDARD | AL2023_x86_64_NEURON | AL2023_x86_64_NVIDIA | AL2023_ARM_64_NVIDIA`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`CapacityType`  <a name="cfn-eks-nodegroup-capacitytype"></a>
The capacity type of your managed node group.  
*Required*: No  
*Type*: String  
*Allowed values*: `ON_DEMAND | SPOT | CAPACITY_BLOCK`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ClusterName`  <a name="cfn-eks-nodegroup-clustername"></a>
The name of your cluster.  
*Required*: Yes  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`DiskSize`  <a name="cfn-eks-nodegroup-disksize"></a>
The root device disk size (in GiB) for your node group instances. The default disk size is 20 GiB for Linux and Bottlerocket. The default disk size is 50 GiB for Windows. If you specify `launchTemplate`, then don't specify `diskSize`, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: Integer  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ForceUpdateEnabled`  <a name="cfn-eks-nodegroup-forceupdateenabled"></a>
Force the update if any `Pod` on the existing node group can't be drained due to a `Pod` disruption budget issue. If an update fails because all Pods can't be drained, you can force the update after it fails to terminate the old node whether or not any `Pod` is running on the node.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`InstanceTypes`  <a name="cfn-eks-nodegroup-instancetypes"></a>
Specify the instance types for a node group. If you specify a GPU instance type, make sure to also specify an applicable GPU AMI type with the `amiType` parameter. If you specify `launchTemplate`, then you can specify zero or one instance type in your launch template *or* you can specify 0-20 instance types for `instanceTypes`. If however, you specify an instance type in your launch template *and* specify any `instanceTypes`, the node group deployment will fail. If you don't specify an instance type in a launch template or for `instanceTypes`, then `t3.medium` is used, by default. If you specify `Spot` for `capacityType`, then we recommend specifying multiple values for `instanceTypes`. For more information, see [Managed node group capacity types](https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types) and [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: Array of String  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`Labels`  <a name="cfn-eks-nodegroup-labels"></a>
The Kubernetes `labels` applied to the nodes in the node group.  
Only `labels` that are applied with the Amazon EKS API are shown here. There may be other Kubernetes `labels` applied to the nodes in this group.
*Required*: No  
*Type*: Object of String  
*Pattern*: `^.+$`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`LaunchTemplate`  <a name="cfn-eks-nodegroup-launchtemplate"></a>
An object representing a node group's launch template specification. When using this object, don't directly specify `instanceTypes`, `diskSize`, or `remoteAccess`. You cannot later specify a different launch template ID or name than what was used to create the node group.  
Make sure that the launch template meets the requirements in `launchTemplateSpecification`. Also refer to [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: [LaunchTemplateSpecification](aws-properties-eks-nodegroup-launchtemplatespecification.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`NodegroupName`  <a name="cfn-eks-nodegroup-nodegroupname"></a>
The unique name to give your node group.  
*Required*: No  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`NodeRepairConfig`  <a name="cfn-eks-nodegroup-noderepairconfig"></a>
The node auto repair configuration for the node group.  
*Required*: No  
*Type*: [NodeRepairConfig](aws-properties-eks-nodegroup-noderepairconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`NodeRole`  <a name="cfn-eks-nodegroup-noderole"></a>
The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker node `kubelet` daemon makes calls to AWS APIs on your behalf. Nodes receive permissions for these API calls through an IAM instance profile and associated policies. Before you can launch nodes and register them into a cluster, you must create an IAM role for those nodes to use when they are launched. For more information, see [Amazon EKS node IAM role](https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html) in the * *Amazon EKS User Guide* *. If you specify `launchTemplate`, then don't specify ` [IamInstanceProfile](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html) ` in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: Yes  
*Type*: String  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ReleaseVersion`  <a name="cfn-eks-nodegroup-releaseversion"></a>
The AMI version of the Amazon EKS optimized AMI to use with your node group (for example, `1.14.7-YYYYMMDD`). By default, the latest available AMI version for the node group's current Kubernetes version is used. For more information, see [Amazon EKS optimized Linux AMI Versions](https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html) in the *Amazon EKS User Guide*.  
Changing this value triggers an update of the node group if one is available. You can't update other properties at the same time as updating `Release Version`.
*Required*: No  
*Type*: String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RemoteAccess`  <a name="cfn-eks-nodegroup-remoteaccess"></a>
The remote access configuration to use with your node group. For Linux, the protocol is SSH. For Windows, the protocol is RDP. If you specify `launchTemplate`, then don't specify `remoteAccess`, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: [RemoteAccess](aws-properties-eks-nodegroup-remoteaccess.md)  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`ScalingConfig`  <a name="cfn-eks-nodegroup-scalingconfig"></a>
The scaling configuration details for the Auto Scaling group that is created for your node group.  
*Required*: No  
*Type*: [ScalingConfig](aws-properties-eks-nodegroup-scalingconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Subnets`  <a name="cfn-eks-nodegroup-subnets"></a>
The subnets to use for the Auto Scaling group that is created for your node group. If you specify `launchTemplate`, then don't specify ` [SubnetId](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html) ` in your launch template, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
*Required*: Yes  
*Type*: Array of String  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`Tags`  <a name="cfn-eks-nodegroup-tags"></a>
Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or AWS resources.  
*Required*: No  
*Type*: Object of String  
*Pattern*: `^.+$`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Taints`  <a name="cfn-eks-nodegroup-taints"></a>
The Kubernetes taints to be applied to the nodes in the node group when they are created. Effect is one of `No_Schedule`, `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used together with tolerations to control how workloads are scheduled to your nodes. For more information, see [Node taints on managed node groups](https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html).  
*Required*: No  
*Type*: Array of [Taint](aws-properties-eks-nodegroup-taint.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`UpdateConfig`  <a name="cfn-eks-nodegroup-updateconfig"></a>
The node group update configuration.  
*Required*: No  
*Type*: [UpdateConfig](aws-properties-eks-nodegroup-updateconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Version`  <a name="cfn-eks-nodegroup-version"></a>
The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the cluster is used, and this is the only accepted specified value. If you specify `launchTemplate`, and your launch template uses a custom AMI, then don't specify `version`, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see [Launch template support](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.  
You can't update other properties at the same time as updating `Version`.
*Required*: No  
*Type*: String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`WarmPoolConfig`  <a name="cfn-eks-nodegroup-warmpoolconfig"></a>
Property description not available.  
*Required*: No  
*Type*: [WarmPoolConfig](aws-properties-eks-nodegroup-warmpoolconfig.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

## Return values
<a name="aws-resource-eks-nodegroup-return-values"></a>

### Ref
<a name="aws-resource-eks-nodegroup-return-values-ref"></a>

When you pass the logical ID of this resource to the intrinsic `Ref` function, `Ref` returns the resource name. For example:

 `{ "Ref": "myNodegroup" }` 

For the Amazon EKS node group `myNodegroup`, Ref returns the physical resource ID of the node group. For example, `cluster-name/nodegroup_name`.

For more information about using the `Ref` function, see [https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-ref.html](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-ref.html).

### Fn::GetAtt
<a name="aws-resource-eks-nodegroup-return-values-fn--getatt"></a>

The `Fn::GetAtt` intrinsic function returns a value for a specified attribute of this type. The following are the available attributes and sample return values.

For more information about using the `Fn::GetAtt` intrinsic function, see [https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html).

#### 
<a name="aws-resource-eks-nodegroup-return-values-fn--getatt-fn--getatt"></a>

`Arn`  <a name="Arn-fn::getatt"></a>
The Amazon Resource Name (ARN) associated with the managed node group.

`ClusterName`  <a name="ClusterName-fn::getatt"></a>
The name of your cluster.

`NodegroupName`  <a name="NodegroupName-fn::getatt"></a>
The name associated with an Amazon EKS managed node group.

## Examples
<a name="aws-resource-eks-nodegroup--examples"></a>

### Create a managed node group
<a name="aws-resource-eks-nodegroup--examples--Create_a_managed_node_group"></a>

The following example creates an Amazon EKS managed node group named `standard` in the `prod` cluster.

#### JSON
<a name="aws-resource-eks-nodegroup--examples--Create_a_managed_node_group--json"></a>

```
{
    "Resources": {
        "EKSNodegroup": {
            "Type": "AWS::EKS::Nodegroup",
            "Properties": {
                "ClusterName": "prod",
                "NodeRole": "arn:aws:iam::012345678910:role/eksInstanceRole",
                "ScalingConfig": {
                    "MinSize": 3,
                    "DesiredSize": 5,
                    "MaxSize": 7
                },
                "Labels": {
                    "Key1": "Value1",
                    "Key2": "Value2"
                },
                "Subnets": [
                    "subnet-6782e71e",
                    "subnet-e7e761ac"
                ]
            }
        }
    }
}
```

#### YAML
<a name="aws-resource-eks-nodegroup--examples--Create_a_managed_node_group--yaml"></a>

```
Resources:
  EKSNodegroup:
    Type: 'AWS::EKS::Nodegroup'
    Properties:
      ClusterName: prod
      NodeRole: 'arn:aws:iam::012345678910:role/eksInstanceRole'
      ScalingConfig:
        MinSize: 3
        DesiredSize: 5
        MaxSize: 7
      Labels:
        Key1: Value1
        Key2: Value2
      Subnets:
        - subnet-6782e71e
        - subnet-e7e761ac
```

## See also
<a name="aws-resource-eks-nodegroup--seealso"></a>
+ [Managed node groups](https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html) in the *Amazon EKS User Guide *.
+ [CreateNodegroup](https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateNodegroup.html) in the *Amazon EKS API Reference *.

# AWS::EKS::Nodegroup LaunchTemplateSpecification
<a name="aws-properties-eks-nodegroup-launchtemplatespecification"></a>

An object representing a node group launch template specification. The launch template can't include [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html), [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html), [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html), [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html), or [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TerminateInstances.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TerminateInstances.html), or the node group deployment or update will fail. For more information about launch templates, see [https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html) in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see [Customizing managed nodes with launch templates](https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html) in the *Amazon EKS User Guide*.

You must specify either the launch template ID or the launch template name in the request, but not both.

## Syntax
<a name="aws-properties-eks-nodegroup-launchtemplatespecification-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-launchtemplatespecification-syntax.json"></a>

```
{
  "[Id](#cfn-eks-nodegroup-launchtemplatespecification-id)" : String,
  "[Name](#cfn-eks-nodegroup-launchtemplatespecification-name)" : String,
  "[Version](#cfn-eks-nodegroup-launchtemplatespecification-version)" : String
}
```

### YAML
<a name="aws-properties-eks-nodegroup-launchtemplatespecification-syntax.yaml"></a>

```
  [Id](#cfn-eks-nodegroup-launchtemplatespecification-id): String
  [Name](#cfn-eks-nodegroup-launchtemplatespecification-name): String
  [Version](#cfn-eks-nodegroup-launchtemplatespecification-version): String
```

## Properties
<a name="aws-properties-eks-nodegroup-launchtemplatespecification-properties"></a>

`Id`  <a name="cfn-eks-nodegroup-launchtemplatespecification-id"></a>
The ID of the launch template.  
You must specify either the launch template ID or the launch template name in the request, but not both. After node group creation, you cannot use a different ID.  
*Required*: Conditional  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Name`  <a name="cfn-eks-nodegroup-launchtemplatespecification-name"></a>
The name of the launch template.  
You must specify either the launch template name or the launch template ID in the request, but not both. After node group creation, you cannot use a different name.  
*Required*: Conditional  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Version`  <a name="cfn-eks-nodegroup-launchtemplatespecification-version"></a>
The version number of the launch template to use. If no version is specified, then the template's default version is used. You can use a different version for node group updates.  
*Required*: No  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup NodeRepairConfig
<a name="aws-properties-eks-nodegroup-noderepairconfig"></a>

The node auto repair configuration for the node group.

## Syntax
<a name="aws-properties-eks-nodegroup-noderepairconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-noderepairconfig-syntax.json"></a>

```
{
  "[Enabled](#cfn-eks-nodegroup-noderepairconfig-enabled)" : Boolean,
  "[MaxParallelNodesRepairedCount](#cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedcount)" : Integer,
  "[MaxParallelNodesRepairedPercentage](#cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedpercentage)" : Integer,
  "[MaxUnhealthyNodeThresholdCount](#cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdcount)" : Integer,
  "[MaxUnhealthyNodeThresholdPercentage](#cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdpercentage)" : Integer,
  "[NodeRepairConfigOverrides](#cfn-eks-nodegroup-noderepairconfig-noderepairconfigoverrides)" : [ NodeRepairConfigOverrides, ... ]
}
```

### YAML
<a name="aws-properties-eks-nodegroup-noderepairconfig-syntax.yaml"></a>

```
  [Enabled](#cfn-eks-nodegroup-noderepairconfig-enabled): Boolean
  [MaxParallelNodesRepairedCount](#cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedcount): Integer
  [MaxParallelNodesRepairedPercentage](#cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedpercentage): Integer
  [MaxUnhealthyNodeThresholdCount](#cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdcount): Integer
  [MaxUnhealthyNodeThresholdPercentage](#cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdpercentage): Integer
  [NodeRepairConfigOverrides](#cfn-eks-nodegroup-noderepairconfig-noderepairconfigoverrides): 
    - NodeRepairConfigOverrides
```

## Properties
<a name="aws-properties-eks-nodegroup-noderepairconfig-properties"></a>

`Enabled`  <a name="cfn-eks-nodegroup-noderepairconfig-enabled"></a>
Specifies whether to enable node auto repair for the node group. Node auto repair is disabled by default.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxParallelNodesRepairedCount`  <a name="cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedcount"></a>
Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a count of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set `maxParallelNodesRepairedPercentage` at the same time.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxParallelNodesRepairedPercentage`  <a name="cfn-eks-nodegroup-noderepairconfig-maxparallelnodesrepairedpercentage"></a>
Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a percentage of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set `maxParallelNodesRepairedCount` at the same time.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `100`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxUnhealthyNodeThresholdCount`  <a name="cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdcount"></a>
Specify a count threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set `maxUnhealthyNodeThresholdPercentage` at the same time.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxUnhealthyNodeThresholdPercentage`  <a name="cfn-eks-nodegroup-noderepairconfig-maxunhealthynodethresholdpercentage"></a>
Specify a percentage threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set `maxUnhealthyNodeThresholdCount` at the same time.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Maximum*: `100`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`NodeRepairConfigOverrides`  <a name="cfn-eks-nodegroup-noderepairconfig-noderepairconfigoverrides"></a>
Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.  
*Required*: No  
*Type*: [Array](aws-properties-eks-nodegroup-noderepairconfigoverrides.md) of [NodeRepairConfigOverrides](aws-properties-eks-nodegroup-noderepairconfigoverrides.md)  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup NodeRepairConfigOverrides
<a name="aws-properties-eks-nodegroup-noderepairconfigoverrides"></a>

Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.

## Syntax
<a name="aws-properties-eks-nodegroup-noderepairconfigoverrides-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-noderepairconfigoverrides-syntax.json"></a>

```
{
  "[MinRepairWaitTimeMins](#cfn-eks-nodegroup-noderepairconfigoverrides-minrepairwaittimemins)" : Integer,
  "[NodeMonitoringCondition](#cfn-eks-nodegroup-noderepairconfigoverrides-nodemonitoringcondition)" : String,
  "[NodeUnhealthyReason](#cfn-eks-nodegroup-noderepairconfigoverrides-nodeunhealthyreason)" : String,
  "[RepairAction](#cfn-eks-nodegroup-noderepairconfigoverrides-repairaction)" : String
}
```

### YAML
<a name="aws-properties-eks-nodegroup-noderepairconfigoverrides-syntax.yaml"></a>

```
  [MinRepairWaitTimeMins](#cfn-eks-nodegroup-noderepairconfigoverrides-minrepairwaittimemins): Integer
  [NodeMonitoringCondition](#cfn-eks-nodegroup-noderepairconfigoverrides-nodemonitoringcondition): String
  [NodeUnhealthyReason](#cfn-eks-nodegroup-noderepairconfigoverrides-nodeunhealthyreason): String
  [RepairAction](#cfn-eks-nodegroup-noderepairconfigoverrides-repairaction): String
```

## Properties
<a name="aws-properties-eks-nodegroup-noderepairconfigoverrides-properties"></a>

`MinRepairWaitTimeMins`  <a name="cfn-eks-nodegroup-noderepairconfigoverrides-minrepairwaittimemins"></a>
Specify the minimum time in minutes to wait before attempting to repair a node with this specific `nodeMonitoringCondition` and `nodeUnhealthyReason`.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`NodeMonitoringCondition`  <a name="cfn-eks-nodegroup-noderepairconfigoverrides-nodemonitoringcondition"></a>
Specify an unhealthy condition reported by the node monitoring agent that this override would apply to.  
*Required*: No  
*Type*: String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`NodeUnhealthyReason`  <a name="cfn-eks-nodegroup-noderepairconfigoverrides-nodeunhealthyreason"></a>
Specify a reason reported by the node monitoring agent that this override would apply to.  
*Required*: No  
*Type*: String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`RepairAction`  <a name="cfn-eks-nodegroup-noderepairconfigoverrides-repairaction"></a>
Specify the repair action to take for nodes when all of the specified conditions are met.  
*Required*: No  
*Type*: String  
*Allowed values*: `Replace | Reboot | NoAction`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup RemoteAccess
<a name="aws-properties-eks-nodegroup-remoteaccess"></a>

An object representing the remote access configuration for the managed node group.

## Syntax
<a name="aws-properties-eks-nodegroup-remoteaccess-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-remoteaccess-syntax.json"></a>

```
{
  "[Ec2SshKey](#cfn-eks-nodegroup-remoteaccess-ec2sshkey)" : String,
  "[SourceSecurityGroups](#cfn-eks-nodegroup-remoteaccess-sourcesecuritygroups)" : [ String, ... ]
}
```

### YAML
<a name="aws-properties-eks-nodegroup-remoteaccess-syntax.yaml"></a>

```
  [Ec2SshKey](#cfn-eks-nodegroup-remoteaccess-ec2sshkey): String
  [SourceSecurityGroups](#cfn-eks-nodegroup-remoteaccess-sourcesecuritygroups): 
    - String
```

## Properties
<a name="aws-properties-eks-nodegroup-remoteaccess-properties"></a>

`Ec2SshKey`  <a name="cfn-eks-nodegroup-remoteaccess-ec2sshkey"></a>
The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group. For more information, see [Amazon EC2 key pairs and Linux instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in the *Amazon Elastic Compute Cloud User Guide for Linux Instances*. For Windows, an Amazon EC2 SSH key is used to obtain the RDP password. For more information, see [Amazon EC2 key pairs and Windows instances](https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-key-pairs.html) in the *Amazon Elastic Compute Cloud User Guide for Windows Instances*.  
*Required*: Yes  
*Type*: String  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

`SourceSecurityGroups`  <a name="cfn-eks-nodegroup-remoteaccess-sourcesecuritygroups"></a>
The security group IDs that are allowed SSH access (port 22) to the nodes. For Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't specify a source security group when you create a managed node group, then the port on the nodes is opened to the internet (`0.0.0.0/0`). For more information, see [Security Groups for Your VPC](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html) in the *Amazon Virtual Private Cloud User Guide*.  
*Required*: No  
*Type*: Array of String  
*Update requires*: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)

# AWS::EKS::Nodegroup ScalingConfig
<a name="aws-properties-eks-nodegroup-scalingconfig"></a>

An object representing the scaling configuration details for the Auto Scaling group that is associated with your node group. When creating a node group, you must specify all or none of the properties. When updating a node group, you can specify any or none of the properties.

## Syntax
<a name="aws-properties-eks-nodegroup-scalingconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-scalingconfig-syntax.json"></a>

```
{
  "[DesiredSize](#cfn-eks-nodegroup-scalingconfig-desiredsize)" : Integer,
  "[MaxSize](#cfn-eks-nodegroup-scalingconfig-maxsize)" : Integer,
  "[MinSize](#cfn-eks-nodegroup-scalingconfig-minsize)" : Integer
}
```

### YAML
<a name="aws-properties-eks-nodegroup-scalingconfig-syntax.yaml"></a>

```
  [DesiredSize](#cfn-eks-nodegroup-scalingconfig-desiredsize): Integer
  [MaxSize](#cfn-eks-nodegroup-scalingconfig-maxsize): Integer
  [MinSize](#cfn-eks-nodegroup-scalingconfig-minsize): Integer
```

## Properties
<a name="aws-properties-eks-nodegroup-scalingconfig-properties"></a>

`DesiredSize`  <a name="cfn-eks-nodegroup-scalingconfig-desiredsize"></a>
The current number of nodes that the managed node group should maintain.  
If you use the Kubernetes [Cluster Autoscaler](https://github.com/kubernetes/autoscaler#kubernetes-autoscaler), you shouldn't change the `desiredSize` value directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale down.
Whenever this parameter changes, the number of worker nodes in the node group is updated to the specified size. If this parameter is given a value that is smaller than the current number of running worker nodes, the necessary number of worker nodes are terminated to match the given value. When using CloudFormation, no action occurs if you remove this parameter from your CFN template.  
This parameter can be different from `minSize` in some cases, such as when starting with extra hosts for testing. This parameter can also be different when you want to start with an estimated number of needed hosts, but let the Cluster Autoscaler reduce the number if there are too many. When the Cluster Autoscaler is used, the `desiredSize` parameter is altered by the Cluster Autoscaler (but can be out-of-date for short periods of time). the Cluster Autoscaler doesn't scale a managed node group lower than `minSize` or higher than `maxSize`.  
*Required*: No  
*Type*: Integer  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxSize`  <a name="cfn-eks-nodegroup-scalingconfig-maxsize"></a>
The maximum number of nodes that the managed node group can scale out to. For information about the maximum number that you can specify, see [Amazon EKS service quotas](https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html) in the *Amazon EKS User Guide*.  
*Required*: No  
*Type*: Integer  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MinSize`  <a name="cfn-eks-nodegroup-scalingconfig-minsize"></a>
The minimum number of nodes that the managed node group can scale in to.  
*Required*: No  
*Type*: Integer  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup Taint
<a name="aws-properties-eks-nodegroup-taint"></a>

A property that allows a node to repel a `Pod`. For more information, see [Node taints on managed node groups](https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html) in the *Amazon EKS User Guide*.

## Syntax
<a name="aws-properties-eks-nodegroup-taint-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-taint-syntax.json"></a>

```
{
  "[Effect](#cfn-eks-nodegroup-taint-effect)" : String,
  "[Key](#cfn-eks-nodegroup-taint-key)" : String,
  "[Value](#cfn-eks-nodegroup-taint-value)" : String
}
```

### YAML
<a name="aws-properties-eks-nodegroup-taint-syntax.yaml"></a>

```
  [Effect](#cfn-eks-nodegroup-taint-effect): String
  [Key](#cfn-eks-nodegroup-taint-key): String
  [Value](#cfn-eks-nodegroup-taint-value): String
```

## Properties
<a name="aws-properties-eks-nodegroup-taint-properties"></a>

`Effect`  <a name="cfn-eks-nodegroup-taint-effect"></a>
The effect of the taint.  
*Required*: No  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Key`  <a name="cfn-eks-nodegroup-taint-key"></a>
The key of the taint.  
*Required*: No  
*Type*: String  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`Value`  <a name="cfn-eks-nodegroup-taint-value"></a>
The value of the taint.  
*Required*: No  
*Type*: String  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup UpdateConfig
<a name="aws-properties-eks-nodegroup-updateconfig"></a>

The update configuration for the node group.

## Syntax
<a name="aws-properties-eks-nodegroup-updateconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-updateconfig-syntax.json"></a>

```
{
  "[MaxUnavailable](#cfn-eks-nodegroup-updateconfig-maxunavailable)" : Number,
  "[MaxUnavailablePercentage](#cfn-eks-nodegroup-updateconfig-maxunavailablepercentage)" : Number,
  "[UpdateStrategy](#cfn-eks-nodegroup-updateconfig-updatestrategy)" : String
}
```

### YAML
<a name="aws-properties-eks-nodegroup-updateconfig-syntax.yaml"></a>

```
  [MaxUnavailable](#cfn-eks-nodegroup-updateconfig-maxunavailable): Number
  [MaxUnavailablePercentage](#cfn-eks-nodegroup-updateconfig-maxunavailablepercentage): Number
  [UpdateStrategy](#cfn-eks-nodegroup-updateconfig-updatestrategy): String
```

## Properties
<a name="aws-properties-eks-nodegroup-updateconfig-properties"></a>

`MaxUnavailable`  <a name="cfn-eks-nodegroup-updateconfig-maxunavailable"></a>
The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or `maxUnavailablePercentage` is required to have a value.The maximum number is 100.  
*Required*: No  
*Type*: Number  
*Minimum*: `1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxUnavailablePercentage`  <a name="cfn-eks-nodegroup-updateconfig-maxunavailablepercentage"></a>
The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or `maxUnavailable` is required to have a value.  
*Required*: No  
*Type*: Number  
*Minimum*: `1`  
*Maximum*: `100`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`UpdateStrategy`  <a name="cfn-eks-nodegroup-updateconfig-updatestrategy"></a>
The configuration for the behavior to follow during a node group version update of this managed node group. You choose between two possible strategies for replacing nodes during an [https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateNodegroupVersion.html](https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateNodegroupVersion.html) action.  
An Amazon EKS managed node group updates by replacing nodes with new nodes of newer AMI versions in parallel. The *update strategy* changes the managed node update behavior of the managed node group for each quantity. The *default* strategy has guardrails to protect you from misconfiguration and launches the new instances first, before terminating the old instances. The *minimal* strategy removes the guardrails and terminates the old instances before launching the new instances. This minimal strategy is useful in scenarios where you are constrained to resources or costs (for example, with hardware accelerators such as GPUs).  
*Required*: No  
*Type*: String  
*Allowed values*: `DEFAULT | MINIMAL`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

# AWS::EKS::Nodegroup WarmPoolConfig
<a name="aws-properties-eks-nodegroup-warmpoolconfig"></a>

<a name="aws-properties-eks-nodegroup-warmpoolconfig-description"></a>The `WarmPoolConfig` property type specifies Property description not available. for an [AWS::EKS::Nodegroup](aws-resource-eks-nodegroup.md).

## Syntax
<a name="aws-properties-eks-nodegroup-warmpoolconfig-syntax"></a>

To declare this entity in your CloudFormation template, use the following syntax:

### JSON
<a name="aws-properties-eks-nodegroup-warmpoolconfig-syntax.json"></a>

```
{
  "[Enabled](#cfn-eks-nodegroup-warmpoolconfig-enabled)" : Boolean,
  "[MaxGroupPreparedCapacity](#cfn-eks-nodegroup-warmpoolconfig-maxgrouppreparedcapacity)" : Integer,
  "[MinSize](#cfn-eks-nodegroup-warmpoolconfig-minsize)" : Integer,
  "[PoolState](#cfn-eks-nodegroup-warmpoolconfig-poolstate)" : String,
  "[ReuseOnScaleIn](#cfn-eks-nodegroup-warmpoolconfig-reuseonscalein)" : Boolean
}
```

### YAML
<a name="aws-properties-eks-nodegroup-warmpoolconfig-syntax.yaml"></a>

```
  [Enabled](#cfn-eks-nodegroup-warmpoolconfig-enabled): Boolean
  [MaxGroupPreparedCapacity](#cfn-eks-nodegroup-warmpoolconfig-maxgrouppreparedcapacity): Integer
  [MinSize](#cfn-eks-nodegroup-warmpoolconfig-minsize): Integer
  [PoolState](#cfn-eks-nodegroup-warmpoolconfig-poolstate): String
  [ReuseOnScaleIn](#cfn-eks-nodegroup-warmpoolconfig-reuseonscalein): Boolean
```

## Properties
<a name="aws-properties-eks-nodegroup-warmpoolconfig-properties"></a>

`Enabled`  <a name="cfn-eks-nodegroup-warmpoolconfig-enabled"></a>
Property description not available.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MaxGroupPreparedCapacity`  <a name="cfn-eks-nodegroup-warmpoolconfig-maxgrouppreparedcapacity"></a>
Property description not available.  
*Required*: No  
*Type*: Integer  
*Minimum*: `-1`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`MinSize`  <a name="cfn-eks-nodegroup-warmpoolconfig-minsize"></a>
Property description not available.  
*Required*: No  
*Type*: Integer  
*Minimum*: `0`  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`PoolState`  <a name="cfn-eks-nodegroup-warmpoolconfig-poolstate"></a>
Property description not available.  
*Required*: No  
*Type*: String  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)

`ReuseOnScaleIn`  <a name="cfn-eks-nodegroup-warmpoolconfig-reuseonscalein"></a>
Property description not available.  
*Required*: No  
*Type*: Boolean  
*Update requires*: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)