Skip to content

Commit 6fce954

Browse files
committed
(automated) Updates from project type
1 parent 6b0e38f commit 6fce954

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

.config/.checkov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
download-external-modules: False
2-
evaluate-variables: true
1+
download-external-modules: True
2+
evaluate-variables: True
33
file:
44
- 'tf.json'
55
framework:
File renamed without changes.
File renamed without changes.

.project_automation/functional_tests/entrypoint.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ echo "Running Checkov Analysis"
1616
terraform init
1717
terraform plan -out tf.plan
1818
terraform show -json tf.plan > tf.json
19-
<<<<<<< before updating
20-
checkov --download-external-modules true
21-
=======
2219
checkov --config-file ${PROJECT_PATH}/.config/checkov.yml
23-
>>>>>>> after updating
2420

2521
#********** Terratest execution **********
2622
echo "Running Terratest"

.project_automation/static_tests/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ else
2525
fi
2626
#********** tfsec *********************
2727
echo 'Starting tfsec'
28-
MYTFSEC=$(tfsec . --config-file ${PROJECT_PATH}/.config/tfsec.yml || true)
28+
MYTFSEC=$(tfsec . --config-file ${PROJECT_PATH}/.config/.tfsec.yml || true)
2929
if [[ $MYTFSEC == *"No problems detected!"* ]];
3030
then
3131
echo "Success - tfsec found no security issues!"
@@ -38,7 +38,7 @@ fi
3838

3939
#********** Markdown Lint **************
4040
echo 'Starting markdown lint'
41-
MYMDL=$(mdl --config ${PROJECT_PATH}/.config/.mdlrc .header.md || true)
41+
MYMDL=$(mdl --config ${PROJECT_PATH}/.config/.mdlrc .header.md examples/*/.header.md || true)
4242
if [ -z "$MYMDL" ]
4343
then
4444
echo "Success - markdown lint found no linting issues!"

0 commit comments

Comments
 (0)