CISO-918: fix(security): restore iac-security-high threshold to 1#309
Merged
cx-noam-brendel merged 1 commit intomainfrom Apr 27, 2026
Merged
Conversation
Reverts commit 550d8a1 which changed iac-security-high from 1 to 2, silently allowing one IaC high-severity vulnerability to pass the security gate undetected. All thresholds should be consistent at 1.
|
Policy Management Violations (1)
|
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.

Summary
Reverts the security threshold change introduced in commit 550d8a18 by @cx-anurag-dalke.
What was changed
iac-security-highwas silently changed from1to2, meaning a build would pass even if it contains 1 high-severity IaC vulnerability. All other thresholds remained at1.Why this is a security issue
A threshold of
=2allows one IaC high-severity finding (e.g. public S3 bucket, overly permissive IAM role, unencrypted database) to pass the security gate silently. Inconsistent with every other threshold in the file and creates a blind spot.Related