We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bcd83a commit b81874aCopy full SHA for b81874a
.trivyignore
@@ -1,2 +1,3 @@
1
+AVD-AWS-0066
2
AVD-AWS-0067
3
AVD-AWS-0057
Makefile
@@ -60,7 +60,7 @@ init:
60
61
security:
62
@echo "--> Running Security checks"
63
- @tfsec .
+ @trivy config .
64
$(MAKE) security-modules
65
$(MAKE) security-examples
66
@@ -69,7 +69,7 @@ security-modules:
69
@if [ -d modules ]; then \
70
find modules -type d -mindepth 1 -maxdepth 1 | while read -r dir; do \
71
echo "--> Validating $$dir"; \
72
- tfsec $$dir; \
+ trivy config $$dir; \
73
done; \
74
fi
75
@@ -78,7 +78,7 @@ security-examples:
78
@if [ -d examples ]; then \
79
find examples -type d -mindepth 1 -maxdepth 1 | while read -r dir; do \
80
81
82
83
84
0 commit comments