Skip to content

Instantly share code, notes, and snippets.

View Kapel's full-sized avatar

Kasper Kapel

  • Warsaw
View GitHub Profile
@Kapel
Kapel / ecr-scanner.sh
Last active April 26, 2021 22:55
AWS ECR security scanner
#!/usr/bin/env bash
# This tiny script is used to run a security scan over the latest tags/images in each ECR repo.
#Set REGION_LIST
if [ "$#" -gt 0 ]; then
REGION_LIST=( "$@" )
else
REGION_LIST=(eu-west-1 us-east-1)
fi