You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Option to set a KMS key for the log group and encrypt it (by @till-krauss)
15
27
- Output the name of the cloudwatch log group (by @gbooth27)
16
-
- Option to use spot instances with launch templates without defining pools, especially useful for GPU instance types (@onur-sam-gtn-ai)
17
28
- Added `cpu_credits` param for the workers defined in `worker_groups_launch_template` (by @a-shink)
18
29
- Added support for EBS Volumes tag in `worker_groups_launch_template` and `workers_launch_template_mixed.tf` (by @sppwf)
19
-
- Write your awesome addition here (by @you)
20
30
21
31
### Changed
22
32
23
33
- Update default override instance types to work with Cluster Autoscaler (by @nauxliu on behalf of RightCapital)
24
34
- Examples now specify `enable_dns_hostnames = true`, as per [EKS documentation](https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html) (by @karolinepauls)
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
141
141
| permissions\_boundary | If provided, all IAM roles will be created with this permissions boundary attached. | string | `""` | no |
142
142
| subnets | A list of subnets to place the EKS cluster and workers within. | list(string) | n/a | yes |
143
143
| tags | A map of tags to add to all resources. | map(string) | `{}` | no |
144
-
| vpc\_id | VPC where the cluster and workers will be deployed. It must satisfy [EKS requirements](https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html). | string | n/a | yes |
144
+
| vpc\_id | VPC where the cluster and workers will be deployed. | string | n/a | yes |
145
145
| worker\_additional\_security\_group\_ids | A list of additional security group ids to attach to worker instances | list(string) | `[]` | no |
146
146
| worker\_ami\_name\_filter | Additional name filter for AWS EKS worker AMI. Default behaviour will get latest for the cluster_version but could be set to a release from amazon-eks-ami, e.g. "v20190220" | string | `"v*"` | no |
147
147
| worker\_create\_security\_group | Whether to create a security group for the workers or attach the workers to `worker_security_group_id`. | bool | `"true"` | no |
@@ -159,6 +159,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
159
159
160
160
| Name | Description |
161
161
|------|-------------|
162
+
| cloudwatch\_log\_group\_name | Name of cloudwatch log group created |
162
163
| cluster\_arn | The Amazon Resource Name (ARN) of the cluster. |
163
164
| cluster\_certificate\_authority\_data | Nested attribute containing certificate-authority-data for your cluster. This is the base64 encoded certificate data required to communicate with your cluster. |
164
165
| cluster\_endpoint | The endpoint for your EKS Kubernetes API. |
@@ -167,7 +168,6 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
167
168
| cluster\_id | The name/id of the EKS cluster. |
168
169
| cluster\_security\_group\_id | Security group ID attached to the EKS cluster. |
169
170
| cluster\_version | The Kubernetes server version for the EKS cluster. |
170
-
| cloudwatch\_log\_group\_name | The name of the cloudwatch log group created for the EKS cluster. |
171
171
| config\_map\_aws\_auth | A kubernetes configuration to authenticate to this EKS cluster. |
172
172
| kubeconfig | kubectl config file contents for this EKS cluster. |
173
173
| kubeconfig\_filename | The filename of the generated kubectl config. |
Copy file name to clipboardExpand all lines: local.tf
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,6 @@ locals {
81
81
spot_allocation_strategy ="lowest-price"# The only valid value is lowest-price, which is also the default value. The Auto Scaling group selects the cheapest Spot pools and evenly allocates your Spot capacity across the number of Spot pools that you specify.
82
82
spot_instance_pools =10# "Number of Spot pools per availability zone to allocate capacity. EC2 Auto Scaling selects the cheapest Spot pools and evenly allocates Spot capacity across the number of Spot pools that you specify."
83
83
spot_max_price =""# Maximum price per unit hour that the user is willing to pay for the Spot instances. Default is the on-demand price
84
-
market_type =null# set to "spot" to use spot instances without defining pools
0 commit comments