Skip to content

Commit a000141

Browse files
committed
Fix
1 parent 37b1eb8 commit a000141

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

image/actions.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ function set-init-args() {
219219
fi
220220

221221
if [[ -v OPENTOFU && $TERRAFORM_VER_MINOR -ge 8 ]]; then
222-
debug "Preparing variables for early evaluation"
222+
debug_log "Preparing variables for early evaluation"
223223
set-variable-args
224224
INIT_ARGS="$INIT_ARGS $VARIABLE_ARGS"
225225
else
@@ -422,7 +422,6 @@ function set-plan-args() {
422422
set-common-plan-args
423423
set-deprecated-var-args
424424
set-variable-args
425-
PLAN_ARGS="$PLAN_ARGS $VARIABLE_ARGS"
426425

427426
export PLAN_ARGS
428427
}

tests/workflows/test-plan/early-eval/tofu/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ terraform {
66
}
77
}
88

9+
provider "aws" {
10+
region = "eu-west-2"
11+
}
12+
913
variable "state_bucket" {
1014
type = string
1115
}

0 commit comments

Comments
 (0)