Created
May 21, 2021 19:15
-
-
Save ericpardee/79b93d760dbf3337d399977216f62126 to your computer and use it in GitHub Desktop.
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
# Create EventBridge event alerts when there are CRITICAL severity vulnerabilities in an ECR Image Scan | |
{ | |
"detail-type": [ | |
"ECR Image Scan" | |
], | |
"source": [ | |
"aws.ecr" | |
], | |
"detail": { | |
"finding-severity-counts": { | |
"CRITICAL": [{ | |
"numeric": [ | |
">", | |
0 | |
] | |
}] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment