feat(trivy): add Trivy integration with Kubernetes, including cron job and email reporting

This commit is contained in:
2025-05-10 18:16:08 +02:00
parent 5d2f50feb9
commit bbc4fef0e8
9 changed files with 363 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
locals {
cache_path = "${var.persistent_folder}/trivy/cache"
cronjob_schedule = var.cron_schedule
python_version = "3.12-alpine3.21"
send_report_script = file("${path.module}/resources/send_report.py")
}