Skip to content

Commit eafc96c

Browse files
authored
Merge branch 'master' into master
2 parents c3f58cf + 37e3348 commit eafc96c

File tree

36 files changed

+72
-49
lines changed

36 files changed

+72
-49
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.97.0
3+
rev: v1.99.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_docs

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [20.36.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v20.35.0...v20.36.0) (2025-04-18)
6+
7+
8+
### Features
9+
10+
* Add support for cluster `force_update_version` ([#3345](https://github.com/terraform-aws-modules/terraform-aws-eks/issues/3345)) ([207d73f](https://github.com/terraform-aws-modules/terraform-aws-eks/commit/207d73fbaa5eebe6e98b94e95b83fd0a5a13c307))
11+
12+
## [20.35.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v20.34.0...v20.35.0) (2025-03-29)
13+
14+
15+
### Features
16+
17+
* Default to not changing autoscaling schedule values at the scheduled time ([#3322](https://github.com/terraform-aws-modules/terraform-aws-eks/issues/3322)) ([abf76f6](https://github.com/terraform-aws-modules/terraform-aws-eks/commit/abf76f60144fe645bbf500d98505377fd4a9da79))
18+
519
## [20.34.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v20.33.1...v20.34.0) (2025-03-07)
620

721

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,15 +318,15 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
318318
| Name | Version |
319319
|------|---------|
320320
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
321-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
321+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.95 |
322322
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9 |
323323
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 3.0 |
324324

325325
## Providers
326326

327327
| Name | Version |
328328
|------|---------|
329-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
329+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.95 |
330330
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.9 |
331331
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 3.0 |
332332

@@ -404,6 +404,7 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
404404
| <a name="input_cluster_endpoint_private_access"></a> [cluster\_endpoint\_private\_access](#input\_cluster\_endpoint\_private\_access) | Indicates whether or not the Amazon EKS private API server endpoint is enabled | `bool` | `true` | no |
405405
| <a name="input_cluster_endpoint_public_access"></a> [cluster\_endpoint\_public\_access](#input\_cluster\_endpoint\_public\_access) | Indicates whether or not the Amazon EKS public API server endpoint is enabled | `bool` | `false` | no |
406406
| <a name="input_cluster_endpoint_public_access_cidrs"></a> [cluster\_endpoint\_public\_access\_cidrs](#input\_cluster\_endpoint\_public\_access\_cidrs) | List of CIDR blocks which can access the Amazon EKS public API server endpoint | `list(string)` | <pre>[<br/> "0.0.0.0/0"<br/>]</pre> | no |
407+
| <a name="input_cluster_force_update_version"></a> [cluster\_force\_update\_version](#input\_cluster\_force\_update\_version) | Force version update by overriding upgrade-blocking readiness checks when updating a cluster | `bool` | `null` | no |
407408
| <a name="input_cluster_identity_providers"></a> [cluster\_identity\_providers](#input\_cluster\_identity\_providers) | Map of cluster identity provider configurations to enable for the cluster. Note - this is different/separate from IRSA | `any` | `{}` | no |
408409
| <a name="input_cluster_ip_family"></a> [cluster\_ip\_family](#input\_cluster\_ip\_family) | The IP family used to assign Kubernetes pod and service addresses. Valid values are `ipv4` (default) and `ipv6`. You can only specify an IP family when you create a cluster, changing this value will force a new cluster to be created | `string` | `"ipv4"` | no |
409410
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Name of the EKS cluster | `string` | `""` | no |

examples/eks-auto-mode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Note that this example may create resources which cost money. Run `terraform des
2525
| Name | Version |
2626
|------|---------|
2727
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
28-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
28+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.95 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
34+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.95 |
3535

3636
## Modules
3737

examples/eks-auto-mode/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.83"
7+
version = ">= 5.95"
88
}
99
}
1010
}

examples/eks-hybrid-nodes/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Note that this example may create resources which cost money. Run `terraform des
2626
| Name | Version |
2727
|------|---------|
2828
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
29-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
29+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.95 |
3030
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.16 |
3131
| <a name="requirement_http"></a> [http](#requirement\_http) | >= 3.4 |
3232
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 2.5 |
@@ -36,8 +36,8 @@ Note that this example may create resources which cost money. Run `terraform des
3636

3737
| Name | Version |
3838
|------|---------|
39-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
40-
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 5.83 |
39+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.95 |
40+
| <a name="provider_aws.remote"></a> [aws.remote](#provider\_aws.remote) | >= 5.95 |
4141
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.16 |
4242
| <a name="provider_http"></a> [http](#provider\_http) | >= 3.4 |
4343
| <a name="provider_local"></a> [local](#provider\_local) | >= 2.5 |

examples/eks-hybrid-nodes/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.83"
7+
version = ">= 5.95"
88
}
99
helm = {
1010
source = "hashicorp/helm"

examples/eks-managed-node-group/eks-al2023.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module "eks_al2023" {
2020
example = {
2121
# Starting on 1.30, AL2023 is the default AMI type for EKS managed node groups
2222
instance_types = ["m6i.large"]
23+
ami_type = "AL2023_x86_64_STANDARD"
2324

2425
min_size = 2
2526
max_size = 5

examples/eks-managed-node-group/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.83"
7+
version = ">= 5.95"
88
}
99
}
1010
}

examples/karpenter/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ Note that this example may create resources which cost money. Run `terraform des
9494
| Name | Version |
9595
|------|---------|
9696
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.2 |
97-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
97+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.95 |
9898
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.7 |
9999

100100
## Providers
101101

102102
| Name | Version |
103103
|------|---------|
104-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
105-
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.83 |
104+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.95 |
105+
| <a name="provider_aws.virginia"></a> [aws.virginia](#provider\_aws.virginia) | >= 5.95 |
106106
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.7 |
107107

108108
## Modules

0 commit comments

Comments
 (0)