Skip to content

Commit fdfda3f

Browse files
authored
Merge branch 'master' into feat/use-inline-policy
2 parents e08bc59 + 0778bbb commit fdfda3f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

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

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

5+
## [21.7.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v21.6.1...v21.7.0) (2025-10-27)
6+
7+
### Features
8+
9+
* Add recommended security group rule for port `10251` to match EKS addon for `metrics-server` ([#3562](https://github.com/terraform-aws-modules/terraform-aws-eks/issues/3562)) ([de8c550](https://github.com/terraform-aws-modules/terraform-aws-eks/commit/de8c550d5d10017eba4b2c0b492360511fe0c34b))
10+
511
## [21.6.1](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v21.6.0...v21.6.1) (2025-10-21)
612

713
### Bug Fixes

node_groups.tf

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ locals {
117117
type = "ingress"
118118
self = true
119119
}
120-
# metrics-server
120+
# metrics-server, legacy port - TODO: remove this on the next breaking change at v22
121121
ingress_cluster_4443_webhook = {
122122
description = "Cluster API to node 4443/tcp webhook"
123123
protocol = "tcp"
@@ -126,6 +126,15 @@ locals {
126126
type = "ingress"
127127
source_cluster_security_group = true
128128
}
129+
# metrics-server, current EKS default port
130+
ingress_cluster_10251_webhook = {
131+
description = "Cluster API to node 10251/tcp webhook"
132+
protocol = "tcp"
133+
from_port = 10251
134+
to_port = 10251
135+
type = "ingress"
136+
source_cluster_security_group = true
137+
}
129138
# prometheus-adapter
130139
ingress_cluster_6443_webhook = {
131140
description = "Cluster API to node 6443/tcp webhook"

0 commit comments

Comments
 (0)