Skip to content

Commit 44beb63

Browse files
committed
fix(terraform): CKV_AWS_339 - Update supported EKS platform versions
Update list of supported EKS platform versions to include 1.33 and remove versions that are no longer receiving extended support.
1 parent 7ab98fb commit 44beb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

checkov/terraform/checks/resource/aws/EKSPlatformVersion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get_inspected_key(self) -> str:
2525

2626
def get_expected_values(self) -> list[Any]:
2727
# https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
28-
return ["1.25", "1.26", "1.27", "1.28", "1.29", "1.30", "1.31", "1.32"]
28+
return ["1.27", "1.28", "1.29", "1.30", "1.31", "1.32", "1.33"]
2929

3030

3131
check = EKSPlatformVersion()

0 commit comments

Comments
 (0)