fix(terraform): update CKV_AWS_339 supported EKS Kubernetes versions - #7664
Open
Ishihab wants to merge 1 commit into
Open
fix(terraform): update CKV_AWS_339 supported EKS Kubernetes versions#7664Ishihab wants to merge 1 commit into
Ishihab wants to merge 1 commit into
Conversation
Updated the supported EKS Kubernetes versions list to match the current AWS documentation: - Standard support: 1.36, 1.35, 1.34 - Extended support: 1.33, 1.32, 1.31 - Removed end-of-life versions: 1.30, 1.29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The check
CKV_AWS_339("Ensure EKS clusters run on a supported Kubernetes version") had an outdated list of supported EKS Kubernetes versions.Updated to match the current AWS documentation:
Standard support: 1.36, 1.35, 1.34
Extended support: 1.33, 1.32, 1.31
Changes
checkov/terraform/checks/resource/aws/EKSPlatformVersion.py: Updated version list from[1.29-1.35]to[1.31-1.36]. Removed end-of-life versions (1.29, 1.30) and added new versions (1.36).tests/terraform/checks/resource/aws/example_EKSPlatformVersion/main.tf: Updatedpass2to use version1.36(was1.35). updatedfail1resource with version1.29andfail2version with1.30(was1.21and1.25).Testing