File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ function set-plan-args() {
389389}
390390
391391function create-auto-tfvars() {
392- local AUTO_TFVARS_COUNTER=0
392+ local AUTO_TFVARS_COUNTER=" 00 "
393393
394394 if [[ -n " ${INPUT_VAR_FILE:- } " ]]; then
395395 for file_path in $( echo " $INPUT_VAR_FILE " | tr ' ,' ' \n' ) ; do
@@ -403,7 +403,7 @@ function create-auto-tfvars() {
403403
404404 debug_log " Creating autoloading tfvars file for $file_path : zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER .$name .auto.tfvars"
405405 cp " $file_path " " $INPUT_PATH /zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER .$name .auto.tfvars"
406- AUTO_TFVARS_COUNTER=$(( AUTO_TFVARS_COUNTER + 1 ))
406+ AUTO_TFVARS_COUNTER=$( printf " %02d\n " " $(( AUTO_TFVARS_COUNTER + 1 )) " )
407407 done
408408 fi
409409
You can’t perform that action at this time.
0 commit comments