File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 38
38
39
39
# Dockerfile linter
40
40
- repo : https://github.com/hadolint/hadolint
41
- rev : v2.12.0
41
+ rev : v2.12.1-beta
42
42
hooks :
43
43
- id : hadolint
44
44
args : [
Original file line number Diff line number Diff line change @@ -330,13 +330,13 @@ EOF
330
330
module_outputs=($( echo " $all_tf_content " | hcledit block list | grep output. | cut -d' .' -f 2) )
331
331
332
332
# Looking for sensitive output
333
- local wrapper_output_sensitive=" # sensitive = false # No sensitive module output found"
333
+ local wrapper_output_sensitive=" # sensitive = false # No sensitive module output found"
334
334
for module_output in " ${module_outputs[@]} " ; do
335
335
module_output_sensitive=$( echo " $all_tf_content " | hcledit attribute get " output.${module_output} .sensitive" )
336
336
337
337
# At least one output is sensitive - the wrapper's output should be sensitive, too
338
338
if [[ " $module_output_sensitive " == " true" ]]; then
339
- wrapper_output_sensitive=" sensitive = true # At least one sensitive module output (${module_output} ) found (requires Terraform 0.14+)"
339
+ wrapper_output_sensitive=" sensitive = true # At least one sensitive module output (${module_output} ) found (requires Terraform 0.14+)"
340
340
break
341
341
fi
342
342
done
You can’t perform that action at this time.
0 commit comments